Previously the console logger was being used in integration tests leading to lots of output during test runs. PR Close #29740
		
			
				
	
	
		
			17 lines
		
	
	
		
			386 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			386 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| package(default_visibility = ["//packages/compiler-cli/ngcc:__subpackages__"])
 | |
| 
 | |
| ts_library(
 | |
|     name = "helpers",
 | |
|     testonly = True,
 | |
|     srcs = glob([
 | |
|         "*.ts",
 | |
|     ]),
 | |
|     deps = [
 | |
|         "//packages/compiler-cli/ngcc",
 | |
|         "//packages/compiler-cli/src/ngtsc/path",
 | |
|         "//packages/compiler-cli/src/ngtsc/testing",
 | |
|     ],
 | |
| )
 |