mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
const path = require('path');
|
|
const baseConfig = require('../../jest.config.node');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
|
|
};
|