build(bazel): enable manual ts_web_test_suite tests that require static_files (#24279)
PR Close #24279
This commit is contained in:
parent
b750919ce0
commit
d700a409da
|
@ -29,8 +29,10 @@ jasmine_node_test(
|
|||
|
||||
ts_web_test_suite(
|
||||
name = "test_web",
|
||||
# disable since tests are running but not yet passing
|
||||
tags = ["manual"],
|
||||
static_files = [
|
||||
"//packages/platform-browser/test:static_assets/test.html",
|
||||
"//packages/platform-browser/test:browser/static_assets/200.html"
|
||||
],
|
||||
deps = [
|
||||
":test_lib",
|
||||
],
|
||||
|
|
|
@ -19,7 +19,7 @@ import {ResourceLoaderImpl} from '../../src/resource_loader/resource_loader_impl
|
|||
// will be relative to here, so url200 should look like
|
||||
// static_assets/200.html.
|
||||
// We currently have no way of detecting this.
|
||||
const url200 = '/base/packages/platform-browser/test/browser/static_assets/200.html';
|
||||
const url200 = '/base/angular/packages/platform-browser/test/browser/static_assets/200.html';
|
||||
const url404 = '/bad/path/404.html';
|
||||
|
||||
beforeEach(() => { resourceLoader = new ResourceLoaderImpl(); });
|
||||
|
|
|
@ -26,7 +26,7 @@ class FancyService {
|
|||
|
||||
@Component({
|
||||
selector: 'external-template-comp',
|
||||
templateUrl: '/base/packages/platform-browser/test/static_assets/test.html'
|
||||
templateUrl: '/base/angular/packages/platform-browser/test/static_assets/test.html'
|
||||
})
|
||||
class ExternalTemplateComp {
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ class BadTemplateUrl {
|
|||
|
||||
it('should run async tests with ResourceLoaders', async(() => {
|
||||
const resourceLoader = new ResourceLoaderImpl();
|
||||
resourceLoader.get('/base/packages/platform-browser/test/static_assets/test.html')
|
||||
resourceLoader.get('/base/angular/packages/platform-browser/test/static_assets/test.html')
|
||||
.then(() => { actuallyDone = true; });
|
||||
}),
|
||||
10000); // Long timeout here because this test makes an actual ResourceLoader.
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
load("//tools:defaults.bzl", "ts_library", "ts_web_test_suite")
|
||||
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
|
||||
|
||||
exports_files([
|
||||
"browser/static_assets/200.html",
|
||||
"static_assets/test.html",
|
||||
])
|
||||
|
||||
ts_library(
|
||||
name = "test_lib",
|
||||
testonly = 1,
|
||||
|
@ -35,8 +40,9 @@ jasmine_node_test(
|
|||
|
||||
ts_web_test_suite(
|
||||
name = "test_web",
|
||||
# disable since tests are running but not yet passing
|
||||
tags = ["manual"],
|
||||
static_files = [
|
||||
":static_assets/test.html"
|
||||
],
|
||||
deps = [
|
||||
":test_lib",
|
||||
],
|
||||
|
|
|
@ -104,7 +104,7 @@ class SomeLibModule {
|
|||
}
|
||||
|
||||
@Component(
|
||||
{selector: 'comp', templateUrl: '/base/packages/platform-browser/test/static_assets/test.html'})
|
||||
{selector: 'comp', templateUrl: '/base/angular/packages/platform-browser/test/static_assets/test.html'})
|
||||
class CompWithUrlTemplate {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue