Skip to content

Commit 0f3997d

Browse files
fix: relax sdk type test timeout (#125)
1 parent 13e63e6 commit 0f3997d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/sdk-types.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,6 @@ describe('SDK type packaging', () => {
101101
} finally {
102102
rmSync(tempDir, { recursive: true, force: true });
103103
}
104-
}, 60000);
104+
// This test shells out to TypeScript twice and can exceed 60s on shared CI runners.
105+
}, 120000);
105106
});

0 commit comments

Comments
 (0)