mirror of
https://github.com/danog/code-server.git
synced 2025-01-05 20:38:54 +01:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
export const loggerModule = {
|
|
field: jest.fn(),
|
|
level: 2,
|
|
logger: {
|
|
debug: jest.fn(),
|
|
error: jest.fn(),
|
|
info: jest.fn(),
|
|
trace: jest.fn(),
|
|
warn: jest.fn(),
|
|
},
|
|
}
|