From a63b764b54a8802a6909f08d6e7f3c20c28cd871 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Sat, 3 Feb 2018 20:32:36 -0800 Subject: [PATCH] test(ivy): move compiler canonical specs into a single directory (#22018) PR Close #22018 --- .../{ => compiler_canonical}/compiler_canonical_spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename packages/core/test/render3/{ => compiler_canonical}/compiler_canonical_spec.ts (99%) diff --git a/packages/core/test/render3/compiler_canonical_spec.ts b/packages/core/test/render3/compiler_canonical/compiler_canonical_spec.ts similarity index 99% rename from packages/core/test/render3/compiler_canonical_spec.ts rename to packages/core/test/render3/compiler_canonical/compiler_canonical_spec.ts index 135fd2c228..9a8fadc0ca 100644 --- a/packages/core/test/render3/compiler_canonical_spec.ts +++ b/packages/core/test/render3/compiler_canonical/compiler_canonical_spec.ts @@ -6,10 +6,10 @@ * found in the LICENSE file at https://angular.io/license */ -import {Component, ContentChild, Directive, Injectable, Input, NgModule, OnDestroy, Optional, Pipe, PipeTransform, QueryList, SimpleChanges, TemplateRef, ViewChild, ViewContainerRef} from '../../src/core'; -import * as $r3$ from '../../src/core_render3_private_export'; +import {Component, ContentChild, Directive, Injectable, Input, NgModule, OnDestroy, Optional, Pipe, PipeTransform, QueryList, SimpleChanges, TemplateRef, ViewChild, ViewContainerRef} from '../../../src/core'; +import * as $r3$ from '../../../src/core_render3_private_export'; -import {renderComponent, toHtml} from './render_util'; +import {renderComponent, toHtml} from '../render_util'; /** * NORMATIVE => /NORMATIVE: Designates what the compiler is expected to generate.