File tree Expand file tree Collapse file tree 2 files changed +19
-19
lines changed Expand file tree Collapse file tree 2 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -24,26 +24,26 @@ jobs:
2424 strategy :
2525 matrix :
2626 os :
27- - ubuntu-latest
28- - macos-latest
27+ # - ubuntu-latest
28+ # - macos-latest
2929 - windows-latest
3030 node :
3131 - 8
3232 - 13
3333 test-command :
3434 - test:fast
3535 - test:slow
36- exclude :
37- - os : macos-latest
38- node : 13
39- - os : macos-latest
40- node : 8
41- test-command : test:fast
42- - os : windows-latest
43- node : 13
44- - os : windows-latest
45- node : 8
46- test-command : test:fast
36+ # exclude:
37+ # - os: macos-latest
38+ # node: 13
39+ # - os: macos-latest
40+ # node: 8
41+ # test-command: test:fast
42+ # - os: windows-latest
43+ # node: 13
44+ # - os: windows-latest
45+ # node: 8
46+ # test-command: test:fast
4747
4848 runs-on : ${{ matrix.os }}
4949
5858
5959 - run : npm ci
6060 - run : npm run ${{ matrix.test-command }}
61+ # shell: bash
6162 timeout-minutes : 15
6263 env :
6364 NODE_LTS : ${{ matrix.node == 8 }}
Original file line number Diff line number Diff line change @@ -214,10 +214,9 @@ describe(function() {
214214 } ) ;
215215 } ) ;
216216
217- it ( 'scopes to sub dir if run from there' , async function ( ) {
218- let {
219- status
220- } = await ( await merge ( {
217+ // eslint-disable-next-line mocha/no-exclusive-tests
218+ it . only ( 'scopes to sub dir if run from there' , async function ( ) {
219+ let result = await ( await merge ( {
221220 fixturesPath : 'test/fixtures/app/local' ,
222221 commitMessage : 'my-app' ,
223222 subDir : 'foo/bar'
@@ -227,8 +226,8 @@ describe(function() {
227226 mergeFixtures : 'test/fixtures/app/merge/my-app'
228227 } ) ;
229228
230- assertNormalUpdate ( status ) ;
231- assertNoUnstaged ( status ) ;
229+ assertNormalUpdate ( result . status ) ;
230+ assertNoUnstaged ( result . status ) ;
232231 } ) ;
233232
234233 it ( 'can pick from multiple blueprints' , async function ( ) {
You can’t perform that action at this time.
0 commit comments