Spaces:
Running
Running
Add bio example to tests.
Browse files
lynxkite-app/web/tests/examples.spec.ts
CHANGED
|
@@ -7,6 +7,11 @@ test("LynxKite Graph Analytics example", async ({ page }) => {
|
|
| 7 |
expect(await ws.isErrorFree(process.env.CI ? 2000 : 1000)).toBeTruthy();
|
| 8 |
});
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
test("Pytorch example", async ({ page }) => {
|
| 11 |
const ws = await Workspace.open(page, "PyTorch demo");
|
| 12 |
expect(await ws.isErrorFree()).toBeTruthy();
|
|
|
|
| 7 |
expect(await ws.isErrorFree(process.env.CI ? 2000 : 1000)).toBeTruthy();
|
| 8 |
});
|
| 9 |
|
| 10 |
+
test("Bio example", async ({ page }) => {
|
| 11 |
+
const ws = await Workspace.open(page, "Bio demo");
|
| 12 |
+
expect(await ws.isErrorFree()).toBeTruthy();
|
| 13 |
+
});
|
| 14 |
+
|
| 15 |
test("Pytorch example", async ({ page }) => {
|
| 16 |
const ws = await Workspace.open(page, "PyTorch demo");
|
| 17 |
expect(await ws.isErrorFree()).toBeTruthy();
|