Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/docs/tests/sdk-reference.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const TYPESCRIPT_FIELD_SPELLINGS = uniqueSpellingsByWireName(
await readTypescriptPublicFieldNames(),
);

describe("SDK reference surface", () => {
describe("SDK reference surface", { timeout: 30_000 }, () => {
it("keeps every public callable in sync across TypeScript, Python, Go, and reference pages", async () => {
const [typescriptMethods, pythonMethods, goMethods, referencePages] = await Promise.all([
readTypescriptMethods(),
Expand Down Expand Up @@ -1234,7 +1234,7 @@ describe("SDK reference surface", () => {
});
});

describe("Mintlify customization boundary", () => {
describe("Mintlify customization boundary", { timeout: 30_000 }, () => {
it("uses SDK-native field spellings inside each language tab", async () => {
const [typescriptNames, pythonNames, contentPages] = await Promise.all([
readTypescriptPublicFieldNames(),
Expand Down
Loading