File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ test.group('Bundler', () => {
9
9
'tsconfig.json' ,
10
10
JSON . stringify ( { compilerOptions : { outDir : 'build' , skipLibCheck : true } } )
11
11
) ,
12
- fs . create ( '. adonisrc.json ' , '{}' ) ,
12
+ fs . create ( 'adonisrc.ts ' , 'export default {}' ) ,
13
13
fs . create ( 'package.json' , '{}' ) ,
14
14
fs . create ( 'package-lock.json' , '{}' ) ,
15
15
@@ -36,8 +36,8 @@ test.group('Bundler', () => {
36
36
assert . fileExists ( './build/resources/views/foo.edge' ) ,
37
37
assert . fileExists ( './build/resources/views/nested/bar.edge' ) ,
38
38
assert . fileExists ( './build/resources/views/nested/baz.edge' ) ,
39
- assert . fileExists ( './build/.adonisrc.json' ) ,
40
39
assert . fileExists ( './build/package.json' ) ,
40
+ assert . fileExists ( './build/adonisrc.js' ) ,
41
41
assert . fileExists ( './build/package-lock.json' ) ,
42
42
] )
43
43
} )
You can’t perform that action at this time.
0 commit comments