63 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| load("@build_bazel_rules_typescript//:defs.bzl", "ts_web_test")
 | |
| load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
 | |
| 
 | |
| ts_library(
 | |
|     name = "test_lib",
 | |
|     testonly = 1,
 | |
|     srcs = glob(
 | |
|         ["**/*.ts"],
 | |
|         exclude = ["**/*_node_only_spec.ts"],
 | |
|     ),
 | |
|     deps = [
 | |
|         "//packages:types",
 | |
|         "//packages/common",
 | |
|         "//packages/compiler",
 | |
|         "//packages/compiler-cli",
 | |
|         "//packages/compiler/testing",
 | |
|         "//packages/core",
 | |
|         "//packages/core/testing",
 | |
|         "//packages/platform-browser",
 | |
|         "//packages/platform-browser-dynamic",
 | |
|         "//packages/platform-browser/testing",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ts_library(
 | |
|     name = "test_node_only_lib",
 | |
|     testonly = 1,
 | |
|     srcs = glob(["**/*_node_only_spec.ts"]),
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|         "//packages/compiler",
 | |
|         "//packages/compiler/testing",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| jasmine_node_test(
 | |
|     name = "test",
 | |
|     bootstrap = ["angular/tools/testing/init_node_spec.js"],
 | |
|     # dissable since tests are running but not yet passing
 | |
|     tags = ["manual"],
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|         ":test_node_only_lib",
 | |
|         "//packages/core",
 | |
|         "//tools/testing:node",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ts_web_test(
 | |
|     name = "test_web",
 | |
|     bootstrap = [
 | |
|         "//:web_test_bootstrap_scripts",
 | |
|     ],
 | |
|     # dissable since tests are running but not yet passing
 | |
|     tags = ["manual"],
 | |
|     # do not sort
 | |
|     deps = [
 | |
|         "//tools/testing:browser",
 | |
|         ":test_lib",
 | |
|     ],
 | |
| )
 |