mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
// Jest configuration for api
|
|
const base = require('../../jest.config.base.js')
|
|
|
|
module.exports = {
|
|
...base,
|
|
roots: [...base.roots, '<rootDir>/test'],
|
|
testMatch: ['<rootDir>/test/**/*.test.ts'],
|
|
testPathIgnorePatterns: [
|
|
'<rootDir>/test/integration',
|
|
'<rootDir>/test/fixtures',
|
|
],
|
|
displayName: 'xahau.js',
|
|
}
|