Skip to content

Commit

Permalink
chore(jest): wire up jest
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunvegda committed Feb 7, 2022
1 parent ca634ee commit c6b2a3c
Show file tree
Hide file tree
Showing 7 changed files with 196 additions and 47 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist
node_modules
build
.eslintrc.cjs
coverage
8 changes: 7 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:jest/all",
"airbnb-base",
"airbnb-typescript/base",
"prettier"
Expand All @@ -24,6 +24,7 @@ module.exports = {
es2021: true,
browser: true,
node: true,
jest: true,
},
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
Expand All @@ -43,5 +44,10 @@ module.exports = {
trailingUnderscore: 'allow',
},
],
'jest/consistent-test-it': ["error", {"fn": "test", "withinDescribe": "test"}],
"jest/prefer-expect-assertions": [
"warn",
{ "onlyFunctionsWithAsyncKeyword": true }
]
},
};
29 changes: 29 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import type { Config } from '@jest/types';

const config: Config.InitialOptions = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest',
'.(js|jsx)$': require.resolve('babel-jest'), // jest's default
},
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
collectCoverageFrom: ['src/**/*.{ts,tsx,js,jsx}'],
testMatch: ['<rootDir>/__tests__/**/*.(spec|test).{ts,tsx,js,jsx}'],
watchPlugins: [
require.resolve('jest-watch-typeahead/filename'),
require.resolve('jest-watch-typeahead/testname'),
],
globals: {
__DEV__: true,
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
moduleNameMapper: {
'^~(.*)$': '<rootDir>/src/$1',
},
};

export default config;
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
},
"homepage": "https://github.com/arjunvegda/japanese-moji#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "jest",
"test:watch": "yarn run test --watch",
"test:coverage": "yarn run test --coverage",
"test:ci": "yarn run test:coverage --maxWorkers=4",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
Expand All @@ -47,6 +50,7 @@
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@jest/types": "^27.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
Expand All @@ -62,8 +66,10 @@
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.4",
"jest": "^27.5.0",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
Expand Down
29 changes: 29 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"incremental": true,
"target": "ES2020",
"module": "ESNext",
"lib": ["es2017", "es2020"],
"strict": true,
"importsNotUsedAsValues": "error",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"declaration": true,
"declarationDir": "build",
"sourceMap": true,
"importHelpers": true,
"resolveJsonModule": true,
"baseUrl": ".",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node_modules/@types/", "@types"],
"rootDir": ".",
"outDir": "build"
},
"include": ["./src/**/*"],
"exclude": ["dist", "node_modules", "__tests__"]
}
34 changes: 7 additions & 27 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,10 @@
{
"compilerOptions": {
"incremental": true,
"target": "ES2020",
"module": "ESNext",
"lib": ["es2017", "es2020"],
"strict": true,
"importsNotUsedAsValues": "error",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"declaration": true,
"declarationDir": "build",
"sourceMap": true,
"importHelpers": true,
"resolveJsonModule": true,
"baseUrl": "./src",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node_modules/@types/", "@types"],
"rootDir": "./src",
"outDir": "build",
"noEmit": true
"extends": "./tsconfig.build.json",
"ts-node": {
"moduleTypes": {
"jest.config.ts": "cjs"
}
},
"include": ["./src/**/*", "__tests__/**/*"],
"exclude": ["node_modules"]
"include": ["./src/**/*", "./jest.config.ts", "__tests__"],
"exclude": ["dist", "node_modules"]
}
Loading

0 comments on commit c6b2a3c

Please sign in to comment.