mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-31 05:03:21 +08:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
const path = require('path');
|
|
const baseConfig = require('../../jest.config.browser');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
|
|
transform: {
|
|
...baseConfig.transform,
|
|
'^.+\\.vue$': '@vue/vue3-jest',
|
|
},
|
|
};
|