mirror of
https://github.com/projectstorm/react-diagrams.git
synced 2025-08-14 16:51:29 +08:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
const path = require('path');
|
|
module.exports = {
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest'
|
|
},
|
|
roots: [path.join(__dirname, 'tests')],
|
|
testMatch: ['**/*.test.{ts,tsx}']
|
|
};
|