Skip to content

Commit 81d62c0

Browse files
committed
changed data
1 parent 38b398e commit 81d62c0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

acceptance-tests/fake-api/database/systems.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const data = [
1919
{
2020
alias: 'System-2',
2121
id: 'SYSTEM-2',
22-
state: "CONNECTED",
22+
state: "DISCONNECTED",
2323
locked: false,
2424
systemStartTime: "2025-01-8T16:59:31.000Z",
2525
model: "Model2",

acceptance-tests/page-objects/dashboard/components/dashboard-variable/dashboard-system-variable.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Locator, Page } from "playwright/test";
22
import { DashboardVariableBaseComponent } from "./dashboard-variable-base.component";
33
import { pressEnter } from "../../../../utils/keyboard-utilities";
44
import { systemsColumn } from "../../../../constants/systems-properties.constant";
5+
import { timeOutPeriod } from "../../../../constants/global.constant";
56

67
export class DashboardSystemVariableComponent extends DashboardVariableBaseComponent {
78
constructor(page: Page) {
@@ -94,7 +95,7 @@ export class DashboardSystemVariableComponent extends DashboardVariableBaseCompo
9495
await expect(async () => {
9596
await this.addGroupFilterButton.click();
9697
await menuButton.waitFor({ state: 'visible', timeout: 2000 });
97-
}).toPass({ timeout: 10000 });
98+
}).toPass({ timeout: timeOutPeriod });
9899
await menuButton.click();
99100
// Scroll back so the new empty condition row (appended at the bottom of the QB) is visible.
100101
await this.page.evaluate(() => {

0 commit comments

Comments
 (0)