File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
site/e2e/tests/deployment Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,16 @@ test("experiments", async ({ page }) => {
18
18
await expect ( experimentsLocator ) . toBeVisible ( ) ;
19
19
20
20
// 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 ;
23
31
24
32
// Secondly, check if available experiments are listed
25
33
for ( const experiment of availableExperiments . safe ) {
You can’t perform that action at this time.
0 commit comments