Skip to content

Commit

Permalink
build(compiler-cli): move offline_compiler_test.sh under bazel (angul…
Browse files Browse the repository at this point in the history
…ar#27625)

This tests is currently disabled and broken, additionally it also needs to run under bazel.

PR Close angular#27625
  • Loading branch information
IgorMinar committed Jan 22, 2019
1 parent 73dcd72 commit 7d0e265
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions packages/compiler-cli/integrationtest/test/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")

ts_library(
name = "test_lib",
testonly = True,
srcs = glob(["**/*.ts"]),
deps = [
"//packages/core",
"//packages/core/testing",
"//packages/compiler-cli",
"//packages/platform-browser",
"//packages/platform-server/testing",
"@ngdeps//typescript",
],
)

jasmine_node_test(
name = "test",
bootstrap = ["angular/tools/testing/init_node_spec.js"],
deps = [
":test_lib",
"//packages/platform-server",
"//packages/platform-server/testing",
"//packages/private/testing",
"//tools/testing:node",
],
)

0 comments on commit 7d0e265

Please sign in to comment.