Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit b61120f

Browse files
committed
Corrected wrong approach as timeout can not be higher than 2000ms
1 parent 0cb1f34 commit b61120f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/commands/project/project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ describe('project', function() {
490490
setTimeout(function () {
491491
stdin.send('n\n');
492492
stdin.send('n\n');
493-
}, 5000);
493+
}, 250);
494494

495495
project.generateTest(projPath, {}, function(err) {
496496
fs.existsSync(path.resolve(projPath, 'test/api/client/hello-test.js')).should.be.ok;

0 commit comments

Comments
 (0)