Skip to content

Commit

Permalink
only
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Dec 23, 2019
1 parent 33e5fd5 commit 8e82580
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
# - ubuntu-latest
# - macos-latest
- windows-latest
node:
- 8
- 13
test-command:
- test:fast
- test:slow
exclude:
- os: macos-latest
node: 13
- os: macos-latest
node: 8
test-command: test:fast
- os: windows-latest
node: 13
- os: windows-latest
node: 8
test-command: test:fast
# exclude:
# - os: macos-latest
# node: 13
# - os: macos-latest
# node: 8
# test-command: test:fast
# - os: windows-latest
# node: 13
# - os: windows-latest
# node: 8
# test-command: test:fast

runs-on: ${{ matrix.os }}

Expand All @@ -58,6 +58,7 @@ jobs:

- run: npm ci
- run: npm run ${{ matrix.test-command }}
shell: bash
timeout-minutes: 15
env:
NODE_LTS: ${{ matrix.node == 8 }}
11 changes: 5 additions & 6 deletions test/acceptance/ember-cli-update-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,9 @@ describe(function() {
});
});

it('scopes to sub dir if run from there', async function() {
let {
status
} = await (await merge({
// eslint-disable-next-line mocha/no-exclusive-tests
it.only('scopes to sub dir if run from there', async function() {
let result = await (await merge({
fixturesPath: 'test/fixtures/app/local',
commitMessage: 'my-app',
subDir: 'foo/bar'
Expand All @@ -227,8 +226,8 @@ describe(function() {
mergeFixtures: 'test/fixtures/app/merge/my-app'
});

assertNormalUpdate(status);
assertNoUnstaged(status);
assertNormalUpdate(result.status);
assertNoUnstaged(result.status);
});

it('can pick from multiple blueprints', async function() {
Expand Down

0 comments on commit 8e82580

Please sign in to comment.