build: remove manual tags from platform jasmine tests (#26606)

PR Close #26606
This commit is contained in:
Miško Hevery
2018-10-19 16:43:31 -07:00
committed by Igor Minar
parent 615a515bba
commit 213c25fb08
7 changed files with 12 additions and 11 deletions

View File

@ -30,7 +30,6 @@ jasmine_node_test(
name = "test",
bootstrap = ["angular/tools/testing/init_node_spec.js"],
# dissable since tests are running but not yet passing
tags = ["manual"],
deps = [
":test_lib",
"//tools/testing:node",

View File

@ -307,11 +307,12 @@ class CompWithUrlTemplate {
TestBed.compileComponents();
}));
it('should allow to createSync components with templateUrl after explicit async compilation',
() => {
const fixture = TestBed.createComponent(CompWithUrlTemplate);
expect(fixture.nativeElement).toHaveText('from external template');
});
isBrowser &&
it('should allow to createSync components with templateUrl after explicit async compilation',
() => {
const fixture = TestBed.createComponent(CompWithUrlTemplate);
expect(fixture.nativeElement).toHaveText('from external template');
});
});
describe('overwriting metadata', () => {