Skip to content

Commit

Permalink
chore: update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
whxaxes committed Sep 9, 2018
1 parent 52dcc0c commit 6a23c6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ run/
*.log
dist/
.cache
test/fixtures/*/typings
2 changes: 1 addition & 1 deletion test/bin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('bin.test.ts', () => {
it('should works with clean command correctly', async () => {
const appPath = path.resolve(__dirname, './fixtures/app9');
const p = spawn('tsc', [], { cwd: appPath });
await sleep(3000);
await sleep(5000);
p.kill('SIGINT');
assert(fs.existsSync(path.resolve(appPath, './test.js')));
assert(fs.existsSync(path.resolve(appPath, './app/test.js')));
Expand Down
5 changes: 3 additions & 2 deletions test/fixtures/app9/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"strict": true,
"target": "es2017",
"module": "commonjs",
"moduleResolution": "node"
"moduleResolution": "node",
"watch": false
},
"include": [
"**/*"
"./**/*"
]
}

0 comments on commit 6a23c6b

Please sign in to comment.