diff --git a/docs/get-started/index.md b/docs/get-started/index.md
index f81ae6aff2..221dee2f89 100644
--- a/docs/get-started/index.md
+++ b/docs/get-started/index.md
@@ -220,7 +220,8 @@ This section includes some of the quicker ways to install Coder. For more detail
Templates define what's in your development environment. The template builder
guides you through creating one without writing any Terraform.
-1. Select **Templates** > **New Template**. The template builder opens.
+1. Coder opens the template builder after initial setup.
+ To open it again later, select **Templates** > **New Template**.
1. Select the **Docker** base template from the list.
diff --git a/site/e2e/setup/addUsersAndLicense.spec.ts b/site/e2e/setup/addUsersAndLicense.spec.ts
index 03a6afeb11..0e18650243 100644
--- a/site/e2e/setup/addUsersAndLicense.spec.ts
+++ b/site/e2e/setup/addUsersAndLicense.spec.ts
@@ -19,8 +19,10 @@ test("setup deployment", async ({ page }) => {
await page.getByLabel("Password").fill(users.owner.password);
await page.getByTestId("create").click();
- await expectUrl(page).toHavePathName("/templates");
- await page.getByTestId("button-select-template").isVisible();
+ await expectUrl(page).toHavePathName("/templates/new/builder");
+ await expect(
+ page.getByRole("heading", { name: "Create new template" }),
+ ).toBeVisible();
for (const user of Object.values(users)) {
// Already created as first user
diff --git a/site/src/pages/SetupPage/SetupPage.test.tsx b/site/src/pages/SetupPage/SetupPage.test.tsx
index e291285413..f3122e4270 100644
--- a/site/src/pages/SetupPage/SetupPage.test.tsx
+++ b/site/src/pages/SetupPage/SetupPage.test.tsx
@@ -71,7 +71,7 @@ describe("Setup Page", () => {
await waitFor(() => screen.findByText("Password is too short"));
});
- it("redirects to the app when setup is successful", async () => {
+ it("redirects to the template builder when setup is successful", async () => {
let userHasBeenCreated = false;
server.use(
@@ -110,8 +110,8 @@ describe("Setup Page", () => {
element: