-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathcircular-dependency_spec_large.ts
30 lines (24 loc) · 1.12 KB
/
circular-dependency_spec_large.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { DefaultTimeout, TestLogger, runTargetSpec } from '@angular-devkit/architect/testing';
import { tap } from 'rxjs/operators';
import { browserTargetSpec, host } from '../utils';
describe('Browser Builder circular dependency detection', () => {
beforeEach(done => host.initialize().toPromise().then(done, done.fail));
afterEach(done => host.restore().toPromise().then(done, done.fail));
it('works', (done) => {
host.appendToFile('src/app/app.component.ts',
`import { AppModule } from './app.module'; console.log(AppModule);`);
const overrides = { baseHref: '/myUrl' };
const logger = new TestLogger('circular-dependencies');
runTargetSpec(host, browserTargetSpec, overrides, DefaultTimeout, logger).pipe(
tap((buildEvent) => expect(buildEvent.success).toBe(true)),
tap(() => expect(logger.includes('Circular dependency detected')).toBe(true)),
).toPromise().then(done, done.fail);
});
});