Skip to content

Commit 1d4e516

Browse files
tests: fix flaky test by disabling timeout (#276)
1 parent c2b5fc2 commit 1d4e516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/demo.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ test('use custom introspection', async ({ page }) => {
228228
const result = graphqlSync({ source: clipboardText, schema });
229229
const jsonResult = JSON.stringify(result, null, 2);
230230

231-
await introspectionTab.introspectionTextArea.fill(jsonResult);
231+
await introspectionTab.introspectionTextArea.fill(jsonResult, { timeout: 0 });
232232
await expect(voyagerPage.page).toHaveScreenshot('fill-introspection.png');
233233

234234
await changeSchemaDialog.displayButton.click();

0 commit comments

Comments
 (0)