2018-10-15 23:24:22 -07:00
|
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
|
2018-12-01 03:32:59 -08:00
|
|
|
ts_library(
|
|
|
|
name = "test_lib",
|
|
|
|
testonly = True,
|
|
|
|
srcs = glob(["**/*.ts"]),
|
2018-12-10 14:36:45 -08:00
|
|
|
deps = [
|
|
|
|
"//packages:types",
|
|
|
|
"//packages/benchpress",
|
|
|
|
"//packages/core",
|
|
|
|
"//packages/core/testing",
|
2019-02-20 09:54:42 -08:00
|
|
|
"@npm//protractor",
|
2018-12-10 14:36:45 -08:00
|
|
|
],
|
2018-12-01 03:32:59 -08:00
|
|
|
)
|
2018-10-15 23:24:22 -07:00
|
|
|
|
2018-12-01 03:32:59 -08:00
|
|
|
jasmine_node_test(
|
|
|
|
name = "test",
|
2020-01-10 13:39:52 -08:00
|
|
|
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
|
2018-12-01 03:32:59 -08:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
"//packages/benchpress",
|
|
|
|
"//packages/core/testing",
|
2020-01-10 13:39:37 -08:00
|
|
|
"//tools/testing:node",
|
2020-01-10 13:39:52 -08:00
|
|
|
"//tools/testing:node_es5",
|
2019-02-20 09:54:42 -08:00
|
|
|
"@npm//protractor",
|
2018-12-01 03:32:59 -08:00
|
|
|
],
|
|
|
|
)
|