load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")

ts_library(
    name = "test_lib",
    testonly = True,
    srcs = glob(["**/*.ts"]),
    deps = [
        "//packages/core/schematics/migrations/google3",
        "@npm//@types/shelljs",
        "@npm//tslint",
    ],
)

jasmine_node_test(
    name = "google3",
    deps = [
        ":test_lib",
        "@npm//shelljs",
    ],
)