File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 53
53
"yargs" : " ^6.0.0"
54
54
},
55
55
"devDependencies" : {
56
- "ava" : " ^0.16 .0" ,
56
+ "ava" : " ^0.17 .0" ,
57
57
"babel-cli" : " ^6.5.1" ,
58
58
"babel-plugin-add-module-exports" : " ^0.2.1" ,
59
59
"babel-preset-es2015-node4" : " ^2.1.0" ,
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ import test from 'ava'
2
2
import execa from 'execa'
3
3
4
4
test ( 'it runs' , ( ) => {
5
- return execa ( '.. /cli.js' , [ '--help' ] )
5
+ return execa ( './cli.js' , [ '--help' ] )
6
6
} )
Original file line number Diff line number Diff line change 1
1
import test from 'ava'
2
2
import * as load from '../../src/util/load'
3
3
4
- test . before ( ( ) => process . chdir ( '.. /fixtures' ) )
4
+ test . before ( ( ) => process . chdir ( './test /fixtures' ) )
5
5
6
6
test ( 'Loads environemnts' , ( t ) => {
7
7
t . deepEqual ( load . envs ( ) . sort ( ) , [ 'beta' , 'prod' ] )
You can’t perform that action at this time.
0 commit comments