mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
8 lines
200 B
JavaScript
8 lines
200 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),
|
||
|
};
|