Skip to content

Commit ab1ce10

Browse files
committed
skip testing deep research frontend
1 parent d2cd1fa commit ab1ce10

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

e2e/shared/llamaindexserver_template.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ for (const useCase of templateUseCases) {
6262
test("Frontend should have a title", async ({ page }) => {
6363
test.skip(
6464
templatePostInstallAction !== "runApp" ||
65-
templateFramework === "express",
65+
templateFramework === "express" ||
66+
// nextjs deep research use case requires more time to compile frontend and custom components that can cause timeout for testing
67+
(templateFramework === "nextjs" && useCase === "deep_research"),
6668
);
6769
await page.goto(`http://localhost:${port}`);
6870
await expect(page.getByText("Built by LlamaIndex")).toBeVisible();

0 commit comments

Comments
 (0)