We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b90f4 commit 9319811Copy full SHA for 9319811
site/e2e/helpers.ts
@@ -50,12 +50,10 @@ export const createWorkspace = async (
50
richParameters: RichParameter[] = [],
51
buildParameters: WorkspaceBuildParameter[] = [],
52
): Promise<string> => {
53
- await page.goto("/templates/" + templateName + "/workspace", {
+ await page.goto(`/templates/${templateName}/workspace`, {
54
waitUntil: "domcontentloaded",
55
});
56
- await expectUrl(page).toHavePathName(
57
- "/templates/" + templateName + "/workspace",
58
- );
+ await expectUrl(page).toHavePathName(`/templates/${templateName}/workspace`);
59
60
const name = randomName();
61
await page.getByLabel("name").fill(name);
0 commit comments