Files
vue-cli/jest.config.js
Haoqun Jiang e41ef41540 chore!: drop webpack-4 support in v5 (#6598)
1. I don't think I'll ever have the capacity to keep maintaining this
compat plugin. It's better to drop it now than later.
2. The plugin is needed at the time of alpha.0 because many ecosystem
plugins does not support webpack 5. But now I don't think it will be a
major hurdle.
3. The implementation was too hacky.
2021-07-30 14:03:54 +08:00

10 lines
163 B
JavaScript

module.exports = {
'testEnvironment': 'node',
'setupFiles': [
'<rootDir>/scripts/testSetup.js'
],
'testMatch': [
'**/__tests__/**/*.spec.js'
]
}