Skip to content

Commit

Permalink
Remove test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinpalkovic committed Jan 15, 2025
1 parent a00619c commit b1e99df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/addons/test/src/node/test-manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit b1e99df

Please sign in to comment.