1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-01-16 21:18:39 +01:00
slate/jest.config.js

16 lines
320 B
JavaScript
Raw Normal View History

const config = {
testMatch: ['<rootDir>/packages/slate-react/test/**/*.{js,ts,tsx,jsx}'],
preset: 'ts-jest',
transform: {
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
tsconfig: '<rootDir>/packages/slate-react/tsconfig.json',
},
],
},
testEnvironment: 'jsdom',
}
module.exports = config