Skip to content

Commit b354f5a

Browse files
committed
Move jest up to the root
1 parent e0a400f commit b354f5a

File tree

6 files changed

+291
-641
lines changed

6 files changed

+291
-641
lines changed

jest.config.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const baseProjectConfig = {
2+
transform: {
3+
"^.+\\.(ts|tsx)$": "ts-jest",
4+
},
5+
moduleFileExtensions: ["ts", "tsx", "js"],
6+
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
7+
};
8+
9+
module.exports = {
10+
projects: [
11+
{
12+
...baseProjectConfig,
13+
displayName: "core",
14+
rootDir: "<rootDir>/packages/gitgraph-core/",
15+
},
16+
{
17+
...baseProjectConfig,
18+
displayName: "node",
19+
rootDir: "<rootDir>/packages/gitgraph-node/",
20+
},
21+
{
22+
...baseProjectConfig,
23+
displayName: "react",
24+
rootDir: "<rootDir>/packages/gitgraph-react/",
25+
},
26+
],
27+
};

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,18 @@
2424
"build": "lerna run build",
2525
"watch": "lerna run watch",
2626
"pretest": "npm run build",
27-
"test": "lerna run test",
27+
"test": "jest",
2828
"clean": "lerna clean"
2929
},
3030
"devDependencies": {
31+
"@types/jest": "23.1.4",
3132
"husky": "1.0.0-rc.12",
33+
"jest": "23.3.0",
3234
"lerna": "^2.5.1",
3335
"prettier": "1.13.7",
34-
"pretty-quick": "1.6.0"
36+
"pretty-quick": "1.6.0",
37+
"ts-jest": "23.0.0",
38+
"typescript": "2.9.2"
3539
},
3640
"workspaces": [
3741
"packages/*"

packages/gitgraph-core/package.json

-16
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
"jsnext:main": "./lib/index.js",
2929
"typings": "./lib/index.d.ts",
3030
"scripts": {
31-
"test": "jest",
32-
"test:watch": "jest --watch",
3331
"watch": "tsc -w",
3432
"build": "run-s build:*",
3533
"build:clear": "rimraf ./lib",
@@ -44,32 +42,18 @@
4442
"lodash": "4.17.10"
4543
},
4644
"devDependencies": {
47-
"@types/jest": "^21.1.8",
4845
"@types/joi": "^13.4.0",
4946
"@types/lodash": "^4.14.116",
5047
"@types/node": "^9.4.6",
5148
"browserify": "^14.5.0",
52-
"jest": "^21.2.1",
5349
"npm-run-all": "^4.1.2",
5450
"rimraf": "^2.6.2",
5551
"rollup": "^0.51.8",
56-
"ts-jest": "^21.2.3",
5752
"tslint": "^5.9.1",
5853
"tslint-config-prettier": "^1.12.0",
5954
"typescript": "^2.8.1",
6055
"uglify-es": "^3.3.9"
6156
},
62-
"jest": {
63-
"transform": {
64-
".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
65-
},
66-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
67-
"moduleFileExtensions": [
68-
"ts",
69-
"js",
70-
"json"
71-
]
72-
},
7357
"browser": {
7458
"joi": "joi-browser"
7559
}

packages/gitgraph-node/package.json

-18
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
"scripts": {
2929
"lint": "tslint src/**/*",
3030
"lint:fix": "npm run lint -- --fix",
31-
"test": "jest",
32-
"test:watch": "jest --watch",
3331
"example:default": "ts-node examples/default.ts",
3432
"example:branches": "ts-node examples/branches.ts"
3533
},
@@ -39,27 +37,11 @@
3937
"lodash": "^4.17.10"
4038
},
4139
"devDependencies": {
42-
"@types/jest": "^23.1.1",
4340
"@types/lodash": "^4.14.110",
4441
"@types/node": "^9.4.6",
45-
"jest": "^23.1.0",
46-
"ts-jest": "^21.2.3",
4742
"ts-node": "^6.1.1",
4843
"tslint": "^5.9.1",
4944
"tslint-config-prettier": "1.13.0",
5045
"typescript": "^2.8.1"
51-
},
52-
"jest": {
53-
"transform": {
54-
"^.+\\.tsx?$": "ts-jest"
55-
},
56-
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
57-
"moduleFileExtensions": [
58-
"ts",
59-
"tsx",
60-
"js",
61-
"jsx",
62-
"json"
63-
]
6446
}
6547
}

packages/gitgraph-react/package.json

-16
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
"typings": "./lib/index.d.ts",
3131
"scripts": {
3232
"lint": "tslint --fix src/**/*",
33-
"test": "jest",
34-
"test:watch": "jest --watch",
3533
"watch": "tsc -w",
3634
"build": "run-s build:*",
3735
"build:clear": "rimraf ./lib",
@@ -52,7 +50,6 @@
5250
"@storybook/addon-knobs": "^3.3.15",
5351
"@storybook/addons": "^3.3.15",
5452
"@storybook/react": "^3.3.15",
55-
"@types/jest": "^21.1.8",
5653
"@types/node": "^9.4.6",
5754
"@types/react": "^16.0.40",
5855
"@types/react-dom": "^16.0.4",
@@ -61,26 +58,13 @@
6158
"@types/storybook__react": "^3.0.7",
6259
"babel-core": "^6.26.0",
6360
"browserify": "^14.5.0",
64-
"jest": "^21.2.1",
6561
"npm-run-all": "^4.1.2",
6662
"rimraf": "^2.6.2",
6763
"rollup": "^0.51.8",
68-
"ts-jest": "^21.2.3",
6964
"ts-loader": "3.5.0",
7065
"tslint": "^5.9.1",
7166
"tslint-config-prettier": "1.13.0",
7267
"typescript": "^2.8.1",
7368
"uglify-es": "^3.3.9"
74-
},
75-
"jest": {
76-
"transform": {
77-
".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
78-
},
79-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
80-
"moduleFileExtensions": [
81-
"ts",
82-
"js",
83-
"json"
84-
]
8569
}
8670
}

0 commit comments

Comments
 (0)