Skip to content

Commit a292004

Browse files
clydinhansl
authored andcommitted
test: limit ng-packagr works test to linux
1 parent 57731de commit a292004

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/angular_devkit/build_ng_packagr/src/build/index_spec_large.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ describe('NgPackagr Builder', () => {
3030
const host = new NodeJsSyncHost();
3131
const workspace = new experimental.workspace.Workspace(workspaceRoot, host);
3232

33-
it('works', (done) => {
33+
linuxOnlyIt('works', (done) => {
3434
const targetSpec: TargetSpecifier = { project: 'lib', target: 'build' };
3535

3636
return workspace.loadWorkspaceFromHost(workspaceFile).pipe(
3737
concatMap(ws => new Architect(ws).loadArchitect()),
3838
concatMap(arch => arch.run(arch.getBuilderConfiguration(targetSpec))),
3939
tap((buildEvent) => expect(buildEvent.success).toBe(true)),
4040
).subscribe(undefined, done.fail, done);
41-
}, 60000);
41+
}, 30000);
4242

4343
linuxOnlyIt('tests works', (done) => {
4444
const targetSpec: TargetSpecifier = { project: 'lib', target: 'test' };

0 commit comments

Comments
 (0)