Skip to content

Commit 93f72b8

Browse files
author
Kelly Selden
committed
only
1 parent bab44cb commit 93f72b8

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff 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

@@ -58,6 +58,7 @@ jobs:
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 }}

test/acceptance/ember-cli-update-test.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)