refactor(core): conditionally disable tests for the view engine.
This commit is contained in:
parent
7db93310f1
commit
90226f7714
|
@ -1380,35 +1380,39 @@ function declareTests({useJit, viewEngine}: {useJit: boolean, viewEngine: boolea
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
it('should specify a location of an error that happened during change detection (text)',
|
// TODO(tbosch): delete these tests once view engine is the default as we handle
|
||||||
() => {
|
// these errors via source maps!
|
||||||
TestBed.configureTestingModule({declarations: [MyComp]});
|
if (!viewEngine) {
|
||||||
const template = '<div>{{a.b}}</div>';
|
it('should specify a location of an error that happened during change detection (text)',
|
||||||
TestBed.overrideComponent(MyComp, {set: {template}});
|
() => {
|
||||||
const fixture = TestBed.createComponent(MyComp);
|
TestBed.configureTestingModule({declarations: [MyComp]});
|
||||||
|
const template = '<div>{{a.b}}</div>';
|
||||||
|
TestBed.overrideComponent(MyComp, {set: {template}});
|
||||||
|
const fixture = TestBed.createComponent(MyComp);
|
||||||
|
|
||||||
expect(() => fixture.detectChanges()).toThrowError(/:0:5/);
|
expect(() => fixture.detectChanges()).toThrowError(/:0:5/);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should specify a location of an error that happened during change detection (element property)',
|
it('should specify a location of an error that happened during change detection (element property)',
|
||||||
() => {
|
() => {
|
||||||
TestBed.configureTestingModule({declarations: [MyComp]});
|
TestBed.configureTestingModule({declarations: [MyComp]});
|
||||||
const template = '<div [title]="a.b"></div>';
|
const template = '<div [title]="a.b"></div>';
|
||||||
TestBed.overrideComponent(MyComp, {set: {template}});
|
TestBed.overrideComponent(MyComp, {set: {template}});
|
||||||
const fixture = TestBed.createComponent(MyComp);
|
const fixture = TestBed.createComponent(MyComp);
|
||||||
|
|
||||||
expect(() => fixture.detectChanges()).toThrowError(/:0:5/);
|
expect(() => fixture.detectChanges()).toThrowError(/:0:5/);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should specify a location of an error that happened during change detection (directive property)',
|
it('should specify a location of an error that happened during change detection (directive property)',
|
||||||
() => {
|
() => {
|
||||||
TestBed.configureTestingModule({declarations: [MyComp, ChildComp, MyDir]});
|
TestBed.configureTestingModule({declarations: [MyComp, ChildComp, MyDir]});
|
||||||
const template = '<child-cmp [dirProp]="a.b"></child-cmp>';
|
const template = '<child-cmp [dirProp]="a.b"></child-cmp>';
|
||||||
TestBed.overrideComponent(MyComp, {set: {template}});
|
TestBed.overrideComponent(MyComp, {set: {template}});
|
||||||
const fixture = TestBed.createComponent(MyComp);
|
const fixture = TestBed.createComponent(MyComp);
|
||||||
|
|
||||||
expect(() => fixture.detectChanges()).toThrowError(/:0:11/);
|
expect(() => fixture.detectChanges()).toThrowError(/:0:11/);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should support imperative views', () => {
|
it('should support imperative views', () => {
|
||||||
|
|
Loading…
Reference in New Issue