mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 01:21:58 +00:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
module.exports = ({ onGetJestConfig }) => {
|
|
// console.log('== test ==');
|
|
onGetJestConfig((jestConfig) => {
|
|
// console.log(jestConfig);
|
|
return jestConfig;
|
|
});
|
|
};
|