From 8a626288a659e88bcd20544faa789c8466b00dc8 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Wed, 14 Nov 2018 11:04:39 +0100 Subject: [PATCH] test(ivy): run more common tests with ivy on ci (#27089) With https://github.com/angular/angular/pull/27068 merged we can activate more ivy tests on CI. PR Close #27089 --- packages/common/test/directives/ng_template_outlet_spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/common/test/directives/ng_template_outlet_spec.ts b/packages/common/test/directives/ng_template_outlet_spec.ts index dc380a7808..9226e5acbe 100644 --- a/packages/common/test/directives/ng_template_outlet_spec.ts +++ b/packages/common/test/directives/ng_template_outlet_spec.ts @@ -10,9 +10,8 @@ import {CommonModule} from '@angular/common'; import {Component, ContentChildren, Directive, Injectable, NO_ERRORS_SCHEMA, OnDestroy, QueryList, TemplateRef} from '@angular/core'; import {ComponentFixture, TestBed, async} from '@angular/core/testing'; import {expect} from '@angular/platform-browser/testing/src/matchers'; -import {fixmeIvy} from '@angular/private/testing'; -fixmeIvy('expr.visitExpression is not a function - fixed by #26968') && describe('NgTemplateOutlet', () => { +describe('NgTemplateOutlet', () => { let fixture: ComponentFixture; function setTplRef(value: any): void { fixture.componentInstance.currentTplRef = value; }