* Updates buildifier to a version that also comes with windows binaries. * Fixes a few new formatting/lint warnings * Removes the `args-order` warning because it is no longer a warning.. and is now part of the formatter. PR Close #31112
		
			
				
	
	
		
			25 lines
		
	
	
		
			550 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			550 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "test_lib",
 | |
|     testonly = True,
 | |
|     srcs = glob(["**/*.ts"]),
 | |
|     deps = [
 | |
|         "//packages/common",
 | |
|         "//packages/common/testing",
 | |
|         "//packages/common/upgrade",
 | |
|         "//packages/core",
 | |
|         "//packages/core/testing",
 | |
|         "//packages/upgrade/static",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| jasmine_node_test(
 | |
|     name = "test",
 | |
|     bootstrap = ["angular/tools/testing/init_node_spec.js"],
 | |
|     deps = [
 | |
|         ":test_lib",
 | |
|         "//tools/testing:node",
 | |
|     ],
 | |
| )
 |