fix(ivy): Enable AoT tests to run on CI; disable failing tests (#26975)

PR Close #26975
This commit is contained in:
Miško Hevery
2018-11-05 20:31:54 -08:00
committed by Kara Erickson
parent 5e769d9a25
commit 53e4e0c1a3
22 changed files with 71 additions and 51 deletions

View File

@ -23,15 +23,16 @@ import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
import {DOCUMENT} from '@angular/platform-browser/src/dom/dom_tokens';
import {dispatchEvent, el} from '@angular/platform-browser/testing/src/browser_util';
import {expect} from '@angular/platform-browser/testing/src/matchers';
import {fixmeIvy} from '@angular/private/testing';
import {stringify} from '../../src/util';
const ANCHOR_ELEMENT = new InjectionToken('AnchorElement');
{
describe('jit', () => { declareTests({useJit: true}); });
fixmeIvy('unknown') && describe('jit', () => { declareTests({useJit: true}); });
describe('no jit', () => { declareTests({useJit: false}); });
fixmeIvy('unknown') && describe('no jit', () => { declareTests({useJit: false}); });
}