-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to reset interval on success (#18)
* Add build directory to gitignore * Fix ts-node test compilation error * Replace compilers flag with require The mocha `--compilers` flag is deprecated in favor of `--require`: https://github.com/mochajs/mocha/wiki/compilers-deprecation * Add resetOnSuccess option to retryBackoff operator * Add tests related to internal state * Fix referential transparency issue * fixup! Add resetOnSuccess option to retryBackoff operator * Format retryBackoff with prettier
- Loading branch information
Showing
4 changed files
with
136 additions
and
24 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
dist | ||
dist | ||
build |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--compilers ts:ts-node/register | ||
spec/**/*-spec.ts | ||
--require ts-node/register | ||
spec/**/*-spec.ts |
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
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