Skip to content

Commit

Permalink
Integration testing (#50)
Browse files Browse the repository at this point in the history
* Add initial expectSaga function

* Add initial docs

* Implementation tweaks and simplification for release

* Initial expectSaga tests

* More tweaks and tests

* Minimal flow typing for expectSaga and related

* Update docs

* Allow silencing timeout warnings
  • Loading branch information
jfairbank committed Jan 10, 2017
1 parent c0160e7 commit 593f9df
Show file tree
Hide file tree
Showing 55 changed files with 3,867 additions and 989 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Expand Up @@ -3,6 +3,7 @@
["es2015", { "loose": true }]
],
"plugins": [
"transform-flow-strip-types"
"transform-flow-strip-types",
"transform-async-to-generator"
]
}
5 changes: 4 additions & 1 deletion .eslintrc.json
@@ -1,7 +1,9 @@
{
"parser": "babel-eslint",
"env": {
"jest": true
"browser": true,
"jest": true,
"node": true
},
"extends": [
"airbnb-base",
Expand All @@ -14,6 +16,7 @@
},
"rules": {
"arrow-parens": 0,
"global-require": 0,
"no-plusplus": 0,
"no-unused-vars": [
"error",
Expand Down
1 change: 1 addition & 0 deletions .flowconfig
@@ -1,6 +1,7 @@
[ignore]
.*/node_modules/config-chain/.*
.*/npm/test/fixtures/config/package\.json
.*/read-package-tree/.*

[include]

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -32,3 +32,4 @@ node_modules
# Optional REPL history
.node_repl_history
lib/
_book/
1 change: 1 addition & 0 deletions CNAME
@@ -0,0 +1 @@
redux-saga-test-plan.jeremyfairbank.com

0 comments on commit 593f9df

Please sign in to comment.