darabos commited on
Commit
0537eba
·
1 Parent(s): b44f5a8

Remove unintentionally short timeouts in test.

Browse files
Files changed (1) hide show
  1. lynxkite-app/web/tests/lynxkite.ts +2 -2
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({ timeout: 1000 });
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({ timeout: 1000 });
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() {