fix(compiler): add first bazel test for ng_module (#19703)

We were missing quite a bit of test coverage,
this is the start of recreating it.
PR Close #19703
This commit is contained in:
Tobias Bosch
2017-10-13 09:03:28 -07:00
parent 621f87b2bd
commit ad130d62d8
14 changed files with 376 additions and 5 deletions

View File

@ -5,7 +5,8 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "build_bazel_rules_nodejs",
remote = "https://github.com/bazelbuild/rules_nodejs.git",
tag = "0.1.6",
# TODO(alexeagle): use the correct tag here.
commit = "2c6243df53fd33fdab283ebdd01582e4eb815db8",
)
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
@ -20,4 +21,4 @@ local_repository(
local_repository(
name = "angular",
path = "packages/bazel",
)
)