File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/angular_devkit/build_ng_packagr/src/build Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ describe('NgPackagr Builder', () => {
30
30
const host = new NodeJsSyncHost ( ) ;
31
31
const workspace = new experimental . workspace . Workspace ( workspaceRoot , host ) ;
32
32
33
- it ( 'works' , ( done ) => {
33
+ linuxOnlyIt ( 'works' , ( done ) => {
34
34
const targetSpec : TargetSpecifier = { project : 'lib' , target : 'build' } ;
35
35
36
36
return workspace . loadWorkspaceFromHost ( workspaceFile ) . pipe (
37
37
concatMap ( ws => new Architect ( ws ) . loadArchitect ( ) ) ,
38
38
concatMap ( arch => arch . run ( arch . getBuilderConfiguration ( targetSpec ) ) ) ,
39
39
tap ( ( buildEvent ) => expect ( buildEvent . success ) . toBe ( true ) ) ,
40
40
) . subscribe ( undefined , done . fail , done ) ;
41
- } , 60000 ) ;
41
+ } , 30000 ) ;
42
42
43
43
linuxOnlyIt ( 'tests works' , ( done ) => {
44
44
const targetSpec : TargetSpecifier = { project : 'lib' , target : 'test' } ;
You can’t perform that action at this time.
0 commit comments