Skip to content

Commit 135b1e4

Browse files
committed
FIXMEs
1 parent 0ddbac3 commit 135b1e4

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

site/e2e/tests/restartWorkspace.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ test("restart workspace with ephemeral parameters", async ({ page }) => {
3737
true,
3838
)
3939

40-
// FIXME: verify that build options are default (not selected).
41-
// It is the opposite now until the site logic is corrected.
40+
// Verify that build options are default (not selected).
4241
await verifyParameters(page, workspaceName, richParameters, [
43-
{ name: firstBuildOption.name, value: buildParameters[0].value },
44-
{ name: secondBuildOption.name, value: buildParameters[1].value },
42+
{ name: firstBuildOption.name, value: firstBuildOption.defaultValue },
43+
{ name: secondBuildOption.name, value: secondBuildOption.defaultValue },
4544
])
4645
})

site/e2e/tests/startWorkspace.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ test("start workspace with ephemeral parameters", async ({ page }) => {
4141
buildParameters,
4242
)
4343

44-
// FIXME: verify that build options are default (not selected).
45-
// It is the opposite now until the site logic is corrected.
44+
// Verify that build options are default (not selected).
4645
await verifyParameters(page, workspaceName, richParameters, [
47-
{ name: firstBuildOption.name, value: buildParameters[0].value },
48-
{ name: secondBuildOption.name, value: buildParameters[1].value },
46+
{ name: firstBuildOption.name, value: firstBuildOption.defaultValue },
47+
{ name: secondBuildOption.name, value: secondBuildOption.defaultValue },
4948
])
5049
})

0 commit comments

Comments
 (0)