Remove test timeout

This commit is contained in:
Valentin Palkovic 2025-01-15 09:37:20 +01:00
parent a00619c8e0
commit b1e99dfbaf

View File

@ -86,7 +86,7 @@ const options: ConstructorParameters<typeof TestManager>[1] = {
onReady: vi.fn(),
};
describe('TestManager', { timeout: 2000 }, () => {
describe('TestManager', () => {
it('should create a vitest instance', async () => {
new TestManager(mockChannel, options);
await new Promise((r) => setTimeout(r, 1000));