Pete Bacon Darwin 8d445e0dff refactor(compiler-cli): move legacy compliance tests to new folder ()
This commit renames the original `compliance` test directory to `compliance_old`.
Eventually this directory will be deleted once all the tests have been
migrated to the new test case based compliance tests.

PR Close 
2020-11-13 11:25:56 -08:00

20 lines
528 B
Python

load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "mock_compile",
testonly = True,
srcs = ["index.ts"],
visibility = [
"//packages/compiler-cli/test/compliance_old:__subpackages__",
],
deps = [
"//packages:types",
"//packages/compiler",
"//packages/compiler-cli",
"//packages/compiler-cli/src/ngtsc/core:api",
"//packages/compiler-cli/src/ngtsc/file_system",
"//packages/compiler/test:test_utils",
"@npm//typescript",
],
)