66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
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/router/index.js",
|
|
deps = ["//packages/router"],
|
|
)
|
|
|
|
circular_dependency_test(
|
|
name = "testing_circular_deps_test",
|
|
entry_point = "angular/packages/router/testing/index.js",
|
|
deps = ["//packages/router/testing"],
|
|
)
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
# Visible to //:saucelabs_unit_tests_poc target
|
|
visibility = ["//:__pkg__"],
|
|
deps = [
|
|
"//packages/common",
|
|
"//packages/common/testing",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser-dynamic",
|
|
"//packages/platform-browser/testing",
|
|
"//packages/private/testing",
|
|
"//packages/router",
|
|
"//packages/router/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) bootstrap should restore the scrolling position FAILED
|
|
# IE 10.0.0 (Windows 8.0.0) bootstrap should restore the scrolling position FAILED
|
|
# Error: Expected undefined to equal 5000.
|
|
# at <Jasmine>
|
|
# Error: Expected undefined to equal 3000.
|
|
# at <Jasmine>
|
|
# Error: Expected undefined to equal 0.
|
|
# at <Jasmine>
|
|
# Error: Expected false to be true.
|
|
# at <Jasmine>
|
|
"fixme-saucelabs-ivy",
|
|
"fixme-saucelabs-ve",
|
|
],
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|