-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added functionality to sleep in between scenario steps.
- Loading branch information
1 parent
af3c714
commit 8d85cc6
Showing
5 changed files
with
67 additions
and
680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import Chalk from 'chalk' | ||
|
||
export default ms => { | ||
return () => { | ||
console.log(Chalk.yellow('======================================================')) | ||
console.log(Chalk.yellow('Sleeping for ' + ms + ' milliseconds')) | ||
console.log(Chalk.yellow('======================================================')) | ||
|
||
return new Promise(resolve => { | ||
setTimeout(() => { | ||
resolve(false) | ||
}, ms) | ||
}) | ||
} | ||
} |
Oops, something went wrong.