Spaces:
Running
Running
Remove unintentionally short timeouts in test.
Browse files
lynxkite-app/web/tests/lynxkite.ts
CHANGED
@@ -133,12 +133,12 @@ export class Workspace {
|
|
133 |
await expect(targetHandle).toBeVisible();
|
134 |
await sourceHandle.hover();
|
135 |
await this.page.mouse.down();
|
136 |
-
await expect(this.page.locator(".react-flow__connectionline")).toBeVisible(
|
137 |
await targetHandle.hover();
|
138 |
await this.page.mouse.up();
|
139 |
await expect(
|
140 |
this.page.locator(`.react-flow__edge[aria-label="Edge from ${sourceId} to ${targetId}"]`),
|
141 |
-
).toBeVisible(
|
142 |
}
|
143 |
|
144 |
async execute() {
|
|
|
133 |
await expect(targetHandle).toBeVisible();
|
134 |
await sourceHandle.hover();
|
135 |
await this.page.mouse.down();
|
136 |
+
await expect(this.page.locator(".react-flow__connectionline")).toBeVisible();
|
137 |
await targetHandle.hover();
|
138 |
await this.page.mouse.up();
|
139 |
await expect(
|
140 |
this.page.locator(`.react-flow__edge[aria-label="Edge from ${sourceId} to ${targetId}"]`),
|
141 |
+
).toBeVisible();
|
142 |
}
|
143 |
|
144 |
async execute() {
|