48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
 | |
| 
 | |
| exports_files([
 | |
|     "browser/static_assets/200.html",
 | |
|     "static_assets/test.html",
 | |
| ])
 | |
| 
 | |
| ts_library(
 | |
|     name = "test_lib",
 | |
|     testonly = True,
 | |
|     srcs = glob(["**/*.ts"]),
 | |
|     deps = [
 | |
|         "//packages:types",
 | |
|         "//packages/animations",
 | |
|         "//packages/animations/browser",
 | |
|         "//packages/animations/browser/testing",
 | |
|         "//packages/common",
 | |
|         "//packages/compiler",
 | |
|         "//packages/core",
 | |
|         "//packages/core/testing",
 | |
|         "//packages/platform-browser",
 | |
|         "//packages/platform-browser-dynamic",
 | |
|         "//packages/platform-browser/animations",
 | |
|         "//packages/platform-browser/testing",
 | |
|         "//packages/private/testing",
 | |
|         "@npm//rxjs",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| jasmine_node_test(
 | |
|     name = "test",
 | |
|     bootstrap = ["angular/tools/testing/init_node_spec.js"],
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|         "//tools/testing:node",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ts_web_test_suite(
 | |
|     name = "test_web",
 | |
|     static_files = [
 | |
|         ":static_assets/test.html",
 | |
|     ],
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|     ],
 | |
| )
 |