test(ivy): ngcc - improve and use the MockLogger (#29740)

Previously the console logger was being used in integration tests
leading to lots of output during test runs.

PR Close #29740
This commit is contained in:
Pete Bacon Darwin
2019-04-06 15:35:13 +01:00
committed by Igor Minar
parent cf40105fc0
commit ed12d7e949
4 changed files with 59 additions and 17 deletions

View File

@ -0,0 +1,16 @@
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",
],
)