File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function runTaskTests(setup) {
10
10
var dir = store_1 . default . getState ( ) . dir ;
11
11
var tutorialConfig = store_1 . default . getState ( ) . tutorial . config ;
12
12
var output = parse_loaders_1 . default ( tests , tutorialConfig . testSuffix ) ;
13
- var target = path_1 . join ( tutorialConfig . dir || dir , "_tmp " + tutorialConfig . testSuffix ) ;
13
+ var target = path_1 . join ( tutorialConfig . dir || dir , ".tmp " + tutorialConfig . testSuffix ) ;
14
14
fs_1 . writeFileSync ( target , output , 'utf8' ) ;
15
15
var config = {
16
16
dir : dir ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export function runTaskTests(setup?: boolean): boolean {
15
15
// write temporary test file in tutorial directory
16
16
let target = join (
17
17
tutorialConfig . dir || dir ,
18
- `_tmp ${ tutorialConfig . testSuffix } `
18
+ `.tmp ${ tutorialConfig . testSuffix } `
19
19
) ;
20
20
writeFileSync ( target , output , 'utf8' ) ;
21
21
You can’t perform that action at this time.
0 commit comments