Revert "Release 0.13.0"

This commit is contained in:
Ralph Khreish
2025-05-03 14:38:33 +02:00
committed by GitHub
parent 8dace2186c
commit 6f5ddabc96
177 changed files with 13894 additions and 26358 deletions

View File

@@ -25,9 +25,9 @@ global.wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
if (process.env.SILENCE_CONSOLE === 'true') {
global.console = {
...console,
log: () => {},
info: () => {},
warn: () => {},
error: () => {}
log: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn()
};
}