a661e439a0
Add the current frontend codebase with a baseline .gitignore and update piano-specific UI terms to teaching-oriented terms for the current product context. Made-with: Cursor
13 lines
385 B
JavaScript
13 lines
385 B
JavaScript
const path = require('path')
|
|
module.exports = {
|
|
rootDir: path.resolve(__dirname),
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript',
|
|
coverageDirectory: '<rootDir>/coverage',
|
|
collectCoverage: true,
|
|
modulePaths: ['<rootDir>'],
|
|
transform: {
|
|
'^.+\\.vue$': '@vue/vue3-jest'
|
|
},
|
|
testMatch: ['<rootDir>/tests/unit/**/*.spec.[jt]s', '<rootDir>/**/__tests__/*.[jt]s']
|
|
}
|