fix(ivy): Enable AoT tests to run on CI; disable failing tests (#26975)
PR Close #26975
This commit is contained in:

committed by
Kara Erickson

parent
5e769d9a25
commit
53e4e0c1a3
@ -15,6 +15,8 @@ import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {DOCUMENT} from '@angular/platform-browser/src/dom/dom_tokens';
|
||||
import {dispatchEvent} from '@angular/platform-browser/testing/src/browser_util';
|
||||
import {expect} from '@angular/platform-browser/testing/src/matchers';
|
||||
import {fixmeIvy} from '@angular/private/testing';
|
||||
|
||||
import {NoopNgZone} from '../src/zone/ng_zone';
|
||||
import {ComponentFixtureNoNgZone, TestBed, async, inject, withModule} from '../testing';
|
||||
|
||||
@ -23,7 +25,7 @@ class SomeComponent {
|
||||
}
|
||||
|
||||
{
|
||||
describe('bootstrap', () => {
|
||||
fixmeIvy('unknown') && describe('bootstrap', () => {
|
||||
let mockConsole: MockConsole;
|
||||
|
||||
beforeEach(() => { mockConsole = new MockConsole(); });
|
||||
@ -446,7 +448,7 @@ class SomeComponent {
|
||||
});
|
||||
});
|
||||
|
||||
describe('AppRef', () => {
|
||||
fixmeIvy('unknown') && describe('AppRef', () => {
|
||||
@Component({selector: 'sync-comp', template: `<span>{{text}}</span>`})
|
||||
class SyncComp {
|
||||
text: string = '1';
|
||||
|
Reference in New Issue
Block a user