Enables some passing `platform-browser` tests on Saucelabs. The reason they were disabled was an error log which doesn't actually fail the test run and has been there for a long time. PR Close #36797
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 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")
 | 
						|
 | 
						|
exports_files([
 | 
						|
    "browser/static_assets/200.html",
 | 
						|
    "static_assets/test.html",
 | 
						|
])
 | 
						|
 | 
						|
circular_dependency_test(
 | 
						|
    name = "circular_deps_test",
 | 
						|
    entry_point = "angular/packages/platform-browser/index.js",
 | 
						|
    deps = ["//packages/platform-browser"],
 | 
						|
)
 | 
						|
 | 
						|
circular_dependency_test(
 | 
						|
    name = "testing_circular_deps_test",
 | 
						|
    entry_point = "angular/packages/platform-browser/testing/index.js",
 | 
						|
    deps = ["//packages/platform-browser/testing"],
 | 
						|
)
 | 
						|
 | 
						|
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 = ["//tools/testing:node_es5"],
 | 
						|
    deps = [
 | 
						|
        ":test_lib",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
karma_web_test_suite(
 | 
						|
    name = "test_web",
 | 
						|
    static_files = [
 | 
						|
        ":static_assets/test.html",
 | 
						|
    ],
 | 
						|
    deps = [
 | 
						|
        ":test_lib",
 | 
						|
    ],
 | 
						|
)
 |