We missed removing the `fixme-ivy-aot` bazel tag from the BUILD file of platform-browser-dynamic, so we weren't running the `//packages/platform-browser-dynamic/test:test_web_chromium-local` test target on CI. This commit turns on the tests and adds root causes where they are known. PR Close #27940
		
			
				
	
	
		
			38 lines
		
	
	
		
			934 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			934 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
 | |
| 
 | |
| ts_library(
 | |
|     name = "test_lib",
 | |
|     testonly = True,
 | |
|     srcs = glob(["**/*.ts"]),
 | |
|     deps = [
 | |
|         "//packages:types",
 | |
|         "//packages/compiler",
 | |
|         "//packages/core",
 | |
|         "//packages/core/testing",
 | |
|         "//packages/platform-browser-dynamic",
 | |
|         "//packages/platform-browser-dynamic/testing",
 | |
|         "//packages/platform-browser/testing",
 | |
|         "//packages/private/testing",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| 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 = [
 | |
|         "//packages/platform-browser/test:static_assets/test.html",
 | |
|         "//packages/platform-browser/test:browser/static_assets/200.html",
 | |
|     ],
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|     ],
 | |
| )
 |