diff --git a/packages/compiler/src/render3/view/api.ts b/packages/compiler/src/render3/view/api.ts
index 8daba96587..bc12edc082 100644
--- a/packages/compiler/src/render3/view/api.ts
+++ b/packages/compiler/src/render3/view/api.ts
@@ -6,13 +6,14 @@
* found in the LICENSE file at https://angular.io/license
*/
-import {ViewEncapsulation, ChangeDetectionStrategy} from '../../core';
+import {ChangeDetectionStrategy, ViewEncapsulation} from '../../core';
import {InterpolationConfig} from '../../ml_parser/interpolation_config';
import * as o from '../../output/output_ast';
import {ParseSourceSpan} from '../../parse_util';
import * as t from '../r3_ast';
import {R3DependencyMetadata} from '../r3_factory';
+
/**
* Information needed to compile a directive for the render3 runtime.
*/
diff --git a/packages/core/test/linker/change_detection_integration_spec.ts b/packages/core/test/linker/change_detection_integration_spec.ts
index bf460c5dd8..3f3d5f5b20 100644
--- a/packages/core/test/linker/change_detection_integration_spec.ts
+++ b/packages/core/test/linker/change_detection_integration_spec.ts
@@ -1298,21 +1298,21 @@ const TEST_COMPILER_PROVIDERS: Provider[] = [
}));
it('Reattaches in the original cd mode', fakeAsync(() => {
- const ctx = createCompFixture('');
- const cmp: PushComp = queryDirs(ctx.debugElement, PushComp)[0];
- cmp.changeDetectorRef.detach();
- cmp.changeDetectorRef.reattach();
+ const ctx = createCompFixture('');
+ const cmp: PushComp = queryDirs(ctx.debugElement, PushComp)[0];
+ cmp.changeDetectorRef.detach();
+ cmp.changeDetectorRef.reattach();
- // renderCount should NOT be incremented with each CD as CD mode
- // should be resetted to
- // on-push
- ctx.detectChanges();
- expect(cmp.renderCount).toBeGreaterThan(0);
- const count = cmp.renderCount;
+ // renderCount should NOT be incremented with each CD as CD mode
+ // should be resetted to
+ // on-push
+ ctx.detectChanges();
+ expect(cmp.renderCount).toBeGreaterThan(0);
+ const count = cmp.renderCount;
- ctx.detectChanges();
- expect(cmp.renderCount).toBe(count);
- }));
+ ctx.detectChanges();
+ expect(cmp.renderCount).toBe(count);
+ }));
});
diff --git a/packages/core/test/linker/integration_spec.ts b/packages/core/test/linker/integration_spec.ts
index bf32f820c4..cc0075f7c5 100644
--- a/packages/core/test/linker/integration_spec.ts
+++ b/packages/core/test/linker/integration_spec.ts
@@ -699,29 +699,28 @@ function declareTests(config?: {useJit: boolean}) {
});
it('should be checked when an async pipe requests a check', fakeAsync(() => {
- TestBed.configureTestingModule(
- {declarations: [MyComp, PushCmpWithAsyncPipe], imports: [CommonModule]});
- const template = '';
- TestBed.overrideComponent(MyComp, {set: {template}});
- const fixture = TestBed.createComponent(MyComp);
+ TestBed.configureTestingModule(
+ {declarations: [MyComp, PushCmpWithAsyncPipe], imports: [CommonModule]});
+ const template = '';
+ TestBed.overrideComponent(MyComp, {set: {template}});
+ const fixture = TestBed.createComponent(MyComp);
- tick();
+ tick();
- const cmp: PushCmpWithAsyncPipe =
- fixture.debugElement.children[0].references !['cmp'];
- fixture.detectChanges();
- expect(cmp.numberOfChecks).toEqual(1);
+ const cmp: PushCmpWithAsyncPipe = fixture.debugElement.children[0].references !['cmp'];
+ fixture.detectChanges();
+ expect(cmp.numberOfChecks).toEqual(1);
- fixture.detectChanges();
- fixture.detectChanges();
- expect(cmp.numberOfChecks).toEqual(1);
+ fixture.detectChanges();
+ fixture.detectChanges();
+ expect(cmp.numberOfChecks).toEqual(1);
- cmp.resolve(2);
- tick();
+ cmp.resolve(2);
+ tick();
- fixture.detectChanges();
- expect(cmp.numberOfChecks).toEqual(2);
- }));
+ fixture.detectChanges();
+ expect(cmp.numberOfChecks).toEqual(2);
+ }));
});
it('should create a component that injects an @Host', () => {