File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const fs = require('fs-extra');
5
5
const utils = require ( '../../src/utils.js' ) ;
6
6
const task = require ( '../../src/tasks/discover.js' ) ;
7
7
8
+ // FIXME: Memory fs
8
9
describe ( 'task > package:discover' , ( ) => {
9
10
const root = temp . mkdirSync ( 'osjs-cli-jest' ) ;
10
11
const fname = str => path . resolve ( root , str ) ;
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ describe('task > make:*', () => {
106
106
} ) ;
107
107
108
108
expect ( fs . readdirSync ( fname ( 'src/packages/StandardApplication' ) ) )
109
- . toHaveLength ( 7 ) ;
109
+ . toHaveLength ( 6 ) ;
110
110
} ) ;
111
111
} ) ;
112
112
@@ -120,7 +120,7 @@ describe('task > make:*', () => {
120
120
} ) ;
121
121
122
122
expect ( fs . readdirSync ( fname ( 'src/packages/IframeApplication' ) ) )
123
- . toHaveLength ( 6 ) ;
123
+ . toHaveLength ( 5 ) ;
124
124
} ) ;
125
125
} ) ;
126
126
} ) ;
You can’t perform that action at this time.
0 commit comments