blob: 6b48120a7313ed3f837f356378610cde52392f0b [file]
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@npm//@bazel/concatjs:index.bzl", "concatjs_devserver")
load("@npm//@bazel/protractor:index.bzl", "protractor_web_test_suite")
load("@npm//@bazel/typescript:index.bzl", "ts_library")
load("@npm//html-insert-assets:index.bzl", "html_insert_assets")
html_insert_assets(
name = "inject",
outs = ["index.html"],
args = [
"--html=$(execpath index.tmpl.html)",
"--out=$@",
"--roots=$(RULEDIR)",
"--assets",
"$(execpath //:red-body-style.css)",
],
data = [
"index.tmpl.html",
"//:red-body-style.css",
],
)
concatjs_devserver(
name = "devserver",
static_files = [
"inject",
"//:red-body-style.css",
],
)
ts_library(
name = "e2e",
testonly = 1,
srcs = ["subpackage_e2e-spec.ts"],
deps = [
"@npm//@types/jasmine",
"@npm//@types/node",
"@npm//protractor",
],
)
protractor_web_test_suite(
name = "devserver_test",
on_prepare = "//:protractor.on-prepare.js",
server = ":devserver",
deps = [":e2e"],
)