1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 05:05:24 +00:00
bramw_baserow/web-frontend/test/unit/jest.config.js
2021-12-28 12:37:58 +00:00

9 lines
306 B
JavaScript

const baseConfig = require('../jest.base.config')
module.exports = Object.assign({}, baseConfig, {
testEnvironment: 'jsdom',
testMatch: ['<rootDir>/test/unit/**/*.spec.js'],
displayName: 'unit',
setupFilesAfterEnv: ['./test/unit/jest.setup.js'],
snapshotSerializers: ['jest-serializer-vue'],
})