This commit removes IE 9 and IE 10 checks from the browser detection spec. Also unblocks tests that were previously disabled due to issues in IE10. PR Close #39090
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 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")
 | 
						|
 | 
						|
circular_dependency_test(
 | 
						|
    name = "circular_deps_test",
 | 
						|
    entry_point = "angular/packages/platform-browser/animations/index.js",
 | 
						|
    deps = ["//packages/platform-browser/animations"],
 | 
						|
)
 | 
						|
 | 
						|
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",
 | 
						|
    deps = [
 | 
						|
        ":test_lib",
 | 
						|
    ],
 | 
						|
)
 |