Skip to content

Commit ff34345

Browse files
Merge pull request #121 from bustlelabs/greenkeeper/ava-0.17.0
Update ava to the latest version 🚀
2 parents f0b3444 + f070066 commit ff34345

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"yargs": "^6.0.0"
5454
},
5555
"devDependencies": {
56-
"ava": "^0.16.0",
56+
"ava": "^0.17.0",
5757
"babel-cli": "^6.5.1",
5858
"babel-plugin-add-module-exports": "^0.2.1",
5959
"babel-preset-es2015-node4": "^2.1.0",

test/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import test from 'ava'
22
import execa from 'execa'
33

44
test('it runs', () => {
5-
return execa('../cli.js', ['--help'])
5+
return execa('./cli.js', ['--help'])
66
})

test/util/load.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import test from 'ava'
22
import * as load from '../../src/util/load'
33

4-
test.before(() => process.chdir('../fixtures'))
4+
test.before(() => process.chdir('./test/fixtures'))
55

66
test('Loads environemnts', (t) => {
77
t.deepEqual(load.envs().sort(), [ 'beta', 'prod' ])

0 commit comments

Comments
 (0)