@lit-protocol/e2e
Version:
Lit Protocol E2E testing package for running comprehensive integration tests
10 lines • 365 B
JavaScript
// Suppress deprecation warning from WASM bindings
const originalWarn = console.warn;
console.warn = (...args) => {
const message = args.join(' ');
if (message.includes('using deprecated parameters for `initSync()`')) {
return; // Suppress this specific warning
}
originalWarn.apply(console, args);
};
//# sourceMappingURL=supressLogs.js.map