Skip to content

Commit

Permalink
Release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Dec 16, 2024
1 parent 59c93d6 commit 079cafd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/platform.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,22 +80,22 @@ describe('TestPlatform', () => {

mockLog = {
fatal: jest.fn().mockImplementation((message: unknown) => {
console.log(`FATAL: ${message as string}`);
// console.log(`FATAL: ${message as string}`);
}),
error: jest.fn().mockImplementation((message: unknown) => {
console.log(`ERROR: ${message as string}`);
// console.log(`ERROR: ${message as string}`);
}),
warn: jest.fn().mockImplementation((message: unknown) => {
console.log(`WARN: ${message as string}`);
// console.log(`WARN: ${message as string}`);
}),
notice: jest.fn().mockImplementation((message: unknown) => {
console.log(`NOTICE: ${message as string}`);
// console.log(`NOTICE: ${message as string}`);
}),
info: jest.fn().mockImplementation((message: unknown) => {
console.log(`INFO: ${message as string}`);
// console.log(`INFO: ${message as string}`);
}),
debug: jest.fn().mockImplementation((message: unknown) => {
console.log(`DEBUG: ${message as string}`);
// console.log(`DEBUG: ${message as string}`);
}),
} as unknown as jest.Mocked<AnsiLogger>;

Expand Down

0 comments on commit 079cafd

Please sign in to comment.