-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathlicense-extraction_spec_large.ts
35 lines (29 loc) · 1.34 KB
/
license-extraction_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
31
32
33
34
35
/**
* @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, runTargetSpec } from '@angular-devkit/architect/testing';
import { join, normalize } from '@angular-devkit/core';
import { tap } from 'rxjs/operators';
import { browserTargetSpec, host } from '../utils';
describe('Browser Builder license extraction', () => {
const outputPath = normalize('dist');
beforeEach(done => host.initialize().toPromise().then(done, done.fail));
afterEach(done => host.restore().toPromise().then(done, done.fail));
// Ignored because license works when trying manually on a project, but doesn't work here.
// TODO: fix VFS use in webpack and the test host, and reenable this test.
xit('works', (done) => {
// TODO: make license extraction independent from optimization level.
const overrides = { extractLicenses: true, optimization: true };
runTargetSpec(host, browserTargetSpec, overrides, DefaultTimeout * 2).pipe(
tap((buildEvent) => expect(buildEvent.success).toBe(true)),
tap(() => {
const fileName = join(outputPath, '3rdpartylicenses.txt');
expect(host.scopedSync().exists(fileName)).toBe(true);
}),
).toPromise().then(done, done.fail);
});
});