import {vi, beforeEach, expect} from 'vitest'; process.env = Object.assign(process.env, { ZAIUS_SDK_TEST_REQUEST_ID: '00000000-0000-0000-0000-000000000000', ZAIUS_SDK_API_KEY: 'private.api_key', }); // silence expected console.error() uncomment to debug tests with errors vi.spyOn(global.console, 'error').mockImplementation(() => true); vi.spyOn(global.console, 'debug').mockImplementation(() => true); beforeEach(() => { expect.hasAssertions(); });