load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library") load("//tools/circular_dependency_test:index.bzl", "circular_dependency_test") circular_dependency_test( name = "circular_deps_test", entry_point = "angular/packages/forms/index.js", deps = ["//packages/forms"], ) ts_library( name = "test_lib", testonly = True, srcs = glob(["**/*.ts"]), # Visible to //:saucelabs_unit_tests_poc target visibility = ["//:__pkg__"], deps = [ "//packages/common", "//packages/core", "//packages/core/testing", "//packages/forms", "//packages/platform-browser", "//packages/platform-browser/testing", "//packages/private/testing", "@npm//rxjs", ], ) jasmine_node_test( name = "test", bootstrap = ["//tools/testing:node_es5"], deps = [ ":test_lib", ], ) karma_web_test_suite( name = "test_web", tags = [ # FIXME: fix on saucelabs # IE 11.0.0 (Windows 8.1.0.0) template-driven forms integration tests basic functionality should report properties which are written outside of template bindings FAILED # InvalidStateError: InvalidStateError # IE 10.0.0 (Windows 8.0.0) template-driven forms integration tests basic functionality should report properties which are written outside of template bindings FAILED # InvalidStateError: InvalidStateError "fixme-saucelabs-ivy", ], deps = [ ":test_lib", ], )