mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
12 lines
172 B
TypeScript
12 lines
172 B
TypeScript
jest.mock('zen-logger', () => {
|
|
class Logger {
|
|
log() {}
|
|
error() {}
|
|
warn() {}
|
|
debug() {}
|
|
}
|
|
return {
|
|
__esModule: true,
|
|
default: Logger,
|
|
};
|
|
}); |