load("//tools:defaults.bzl", "karma_web_test_suite", "ts_library") ts_library( name = "test_lib", testonly = True, srcs = glob(["**/*.ts"]), # Visible to //:saucelabs_unit_tests_poc target visibility = ["//:__pkg__"], deps = [ "//packages/common", "//packages/common/http", "//packages/core", "//packages/core/testing", "//packages/misc/angular-in-memory-web-api", "@npm//@types/jasmine-ajax", "@npm//jasmine-ajax", "@npm//rxjs", ], ) karma_web_test_suite( name = "test_web", deps = [ ":test_lib", ], )