Skip to content

Commit 14eadeb

Browse files
authored
Merge pull request #41 from grammarly/f-jest
Migrate to Jest
2 parents 720e0bd + 005473a commit 14eadeb

File tree

8 files changed

+3133
-522
lines changed

8 files changed

+3133
-522
lines changed

packages/focal/jest.config.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
clearMocks: true,
3+
moduleFileExtensions: [
4+
'js',
5+
'ts',
6+
'tsx',
7+
],
8+
testEnvironment: 'jest-environment-jsdom',
9+
testMatch: [
10+
'**/*.test.ts?(x)',
11+
],
12+
transform: {
13+
'.(ts|tsx)': 'ts-jest',
14+
},
15+
preset: 'ts-jest'
16+
}

packages/focal/package.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"docs": "rm -rf ./docs && typedoc --out docs --theme minimal --ignoreCompilerErrors --tsconfig tsconfig.json",
1212
"clean": "rm -rf ./dist",
1313
"build": "npm run clean && tsc && npm run lint",
14-
"test": "npm run build && tape ./dist/test/**/*.js | tap-spec",
15-
"test:watch": "watch 'npm test' src test",
14+
"test": "jest",
15+
"test:watch": "jest --watch",
1616
"lint": "tslint --type-check --project tsconfig.json -c tslint.json",
1717
"prepack": "cp ../../README.md ./ && cp ../../LICENSE ./",
1818
"postpack": "rm README.md && rm LICENSE",
@@ -80,18 +80,17 @@
8080
"dependencies": {},
8181
"devDependencies": {
8282
"@grammarly/tslint-config": "0.5.1",
83+
"@types/jest": "^24.0.0",
8384
"@types/node": "^6.0.34",
8485
"@types/react": "16.0.33",
8586
"@types/react-dom": "16.0.3",
87+
"jest": "^24.1.0",
8688
"react": "16.2.0",
8789
"react-dom": "16.2.0",
88-
"tslint": "5.2.0",
89-
"typescript": "3.3.3",
9090
"rxjs": "5.5.6",
91-
"@types/tape": "^4.2.27",
92-
"tap-spec": "^4.1.1",
93-
"tape": "^4.5.1",
94-
"watch": "^0.18.0"
91+
"ts-jest": "^23.10.5",
92+
"tslint": "5.2.0",
93+
"typescript": "3.3.3"
9594
},
9695
"peerDependencies": {
9796
"@types/react": ">= 16.0.33 < 17.0.0-0",

0 commit comments

Comments
 (0)