Skip to content

Commit 094545c

Browse files
committed
chore(travis): try to fix travis by avoiding tests running in parallel
1 parent 3860c7b commit 094545c

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"lint": "eslint \"**/*.js\" \"**/*.ts\"",
1616
"precommit": "lint-staged",
1717
"release": "repo-cooker --release",
18-
"test": "repo-cooker test"
18+
"test": "repo-cooker test --no-parallel"
1919
},
2020
"repository": {
2121
"type": "git",

packages/node_modules/overmind-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build:es": "tsc --outDir es --module es2015",
1515
"clean": "rimraf es lib coverage",
1616
"typecheck": "tsc --noEmit",
17-
"test": "jest",
17+
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",
2020
"postbuild": "rimraf {lib,es}/**/__tests__",

packages/node_modules/overmind-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"start": "concurrently \"electron ./backend/main\" \"webpack-dev-server --port 3000\"",
1313
"build": "webpack",
1414
"typecheck": "tsc --noEmit",
15-
"test": "jest",
15+
"test": "jest --runInBand",
1616
"test:watch": "jest --watch --updateSnapshot --coverage false",
1717
"prepare": "npm run build",
1818
"posttest": "npm run typecheck"

packages/node_modules/overmind-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build:es": "tsc --outDir es --module es2015",
1515
"clean": "rimraf es lib coverage",
1616
"typecheck": "tsc --noEmit",
17-
"test": "jest",
17+
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",
2020
"postbuild": "rimraf {lib,es}/**/__tests__",

packages/node_modules/overmind-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build:es": "tsc --outDir es --module es2015",
1515
"clean": "rimraf es lib coverage",
1616
"typecheck": "tsc --noEmit",
17-
"test": "jest",
17+
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",
2020
"postbuild": "rimraf {lib,es}/**/__tests__",

packages/node_modules/overmind/jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
},
88
testRegex: '\\.test\\.tsx?$',
99
testPathIgnorePatterns: [
10+
'/coverage/',
1011
'/dist/',
1112
'/es/',
1213
'/lib/',

packages/node_modules/overmind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build:es": "tsc --outDir es --module es2015",
1515
"clean": "rimraf es lib coverage",
1616
"typecheck": "tsc --noEmit",
17-
"test": "jest",
17+
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",
2020
"postbuild": "rimraf {lib,es}/**/__tests__",

packages/node_modules/proxy-state-tree/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build:es": "tsc --outDir es --module es2015",
1212
"clean": "rimraf es lib coverage",
1313
"typecheck": "tsc --noEmit",
14-
"test": "jest",
14+
"test": "jest --runInBand",
1515
"test:watch": "jest --watch --updateSnapshot --coverage false",
1616
"prebuild": "npm run clean",
1717
"postbuild": "rimraf {lib,es}/**/__tests__",

0 commit comments

Comments
 (0)