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