├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── API-EXAMPLES.md ├── BUG-EXAMPLES.md ├── LICENSE ├── README.md ├── package.json ├── src ├── FlushThunks.js ├── Reducer.js ├── Selector.js ├── Thunk.js ├── index.js └── utils.js ├── test ├── FlushThunks.spec.js ├── Reducer.spec.js ├── Selector.spec.js ├── Thunk.spec.js ├── bug-examples.spec.js └── index.spec.js ├── wallaby.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/.npmignore -------------------------------------------------------------------------------- /API-EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/API-EXAMPLES.md -------------------------------------------------------------------------------- /BUG-EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/BUG-EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/package.json -------------------------------------------------------------------------------- /src/FlushThunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/FlushThunks.js -------------------------------------------------------------------------------- /src/Reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/Reducer.js -------------------------------------------------------------------------------- /src/Selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/Selector.js -------------------------------------------------------------------------------- /src/Thunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/Thunk.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/FlushThunks.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/FlushThunks.spec.js -------------------------------------------------------------------------------- /test/Reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/Reducer.spec.js -------------------------------------------------------------------------------- /test/Selector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/Selector.spec.js -------------------------------------------------------------------------------- /test/Thunk.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/Thunk.spec.js -------------------------------------------------------------------------------- /test/bug-examples.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/bug-examples.spec.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/wallaby.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-testkit/HEAD/yarn.lock --------------------------------------------------------------------------------