Skip to content

Commit 4e89853

Browse files
committed
Extract Javascript part to new package
1 parent 3c1967e commit 4e89853

36 files changed

+12
-840
lines changed

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
"description": "Assertions for redux actions testing",
44
"scripts": {
55
"lint": "eslint src test",
6-
"test:general": "mocha --compilers js:babel-register --reporter spec test/general/*.js test/assertions/*.js test/asserts/**/*.js",
76
"test:chai": "mocha --compilers js:babel-register --reporter spec test/chai/*.js",
87
"test:expect": "mocha --compilers js:babel-register --reporter spec test/expect/*.js",
98
"test:expectjs": "mocha --compilers js:babel-register --reporter spec test/expectjs/*.js",
109
"test:should": "mocha --compilers js:babel-register --reporter spec test/should/*.js",
11-
"test": "npm run test:general && npm run test:chai && npm run test:expect && npm run test:expectjs && npm run test:should",
12-
"prepublish": "rimraf lib && babel src --out-dir build --copy-files"
10+
"test": "npm run test:chai && npm run test:expect && npm run test:expectjs && npm run test:should",
11+
"prepublish": "rimraf build && babel src --out-dir build --copy-files"
1312
},
1413
"repository": {
1514
"type": "git",
@@ -41,9 +40,6 @@
4140
"should": "^8.3.2"
4241
},
4342
"dependencies": {
44-
"lodash.findindex": "^4.4.0",
45-
"lodash.flattendeep": "^4.2.0",
46-
"redux": "^3.5.2",
47-
"redux-mock-store": "^1.0.2"
43+
"redux-actions-assertions-js": "^0.0.1"
4844
}
4945
}

src/assertions.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/asserts/errors/dispatchedActionError.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/asserts/errors/notDispatchedActionError.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/asserts/toDispatchActions.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/asserts/toDispatchActionsWithState.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/asserts/toNotDispatchActions.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/asserts/toNotDispatchActionsWithState.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/asserts/utils/assertDispatchedActions.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/asserts/utils/assertNotDispatchedActions.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)