Skip to content

Commit d5a8a91

Browse files
committed
fmt
1 parent d15f10d commit d5a8a91

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

site/e2e/tests/deployment/general.spec.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,16 @@ test("experiments", async ({ page }) => {
1818
await expect(experimentsLocator).toBeVisible();
1919

2020
// Firstly, check if all enabled experiments are listed
21-
expect(experimentsLocator.locator(`li.option-array-item-${e2eFakeExperiment1}.option-enabled`)).toBeVisible;
22-
expect(experimentsLocator.locator(`li.option-array-item-${e2eFakeExperiment2}.option-enabled`)).toBeVisible;
21+
expect(
22+
experimentsLocator.locator(
23+
`li.option-array-item-${e2eFakeExperiment1}.option-enabled`,
24+
),
25+
).toBeVisible;
26+
expect(
27+
experimentsLocator.locator(
28+
`li.option-array-item-${e2eFakeExperiment2}.option-enabled`,
29+
),
30+
).toBeVisible;
2331

2432
// Secondly, check if available experiments are listed
2533
for (const experiment of availableExperiments.safe) {

0 commit comments

Comments
 (0)