mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
const jestConfig = require('../jest.config.js');
|
|
|
|
module.exports = {
|
|
env: {
|
|
'jest/globals': true,
|
|
},
|
|
extends: ['plugin:jest/recommended', 'plugin:jest/style'],
|
|
globals: jestConfig.globals,
|
|
plugins: ['jest'],
|
|
};
|