Skip to content

Commit 36fd92d

Browse files
github-actions[bot]Eric-Guo
authored andcommitted
Apply PR anomalyco#11295: test(app): change language test
1 parent 9c9d01e commit 36fd92d

24 files changed

+84
-68
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { serverName } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { serverName } from "../utils"
33

44
test("home renders and shows core entrypoints", async ({ page }) => {
55
await page.goto("/")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { dirPath, promptSelector } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { dirPath, promptSelector } from "../utils"
33

44
test("project route redirects to /session", async ({ page, directory, slug }) => {
55
await page.goto(dirPath(directory))
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { modKey } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { modKey } from "../utils"
33

44
test("search palette opens and closes", async ({ page, gotoSession }) => {
55
await gotoSession()

packages/app/e2e/server-default.spec.ts renamed to packages/app/e2e/app/server-default.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { serverName, serverUrl } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { serverName, serverUrl } from "../utils"
33

44
const DEFAULT_SERVER_URL_KEY = "opencode.settings.dat:defaultServerUrl"
55

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { promptSelector } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { promptSelector } from "../utils"
33

44
test("can open an existing session and type into the prompt", async ({ page, sdk, gotoSession }) => {
55
const title = `e2e smoke ${Date.now()}`

packages/app/e2e/titlebar-history.spec.ts renamed to packages/app/e2e/app/titlebar-history.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { modKey, promptSelector } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { modKey, promptSelector } from "../utils"
33

44
test("titlebar back/forward navigates between sessions", async ({ page, slug, sdk, gotoSession }) => {
55
await page.setViewportSize({ width: 1400, height: 800 })
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { modKey } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { modKey } from "../utils"
33

44
test("can open a file tab from the search palette", async ({ page, gotoSession }) => {
55
await gotoSession()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test, expect } from "./fixtures"
1+
import { test, expect } from "../fixtures"
22

33
test.skip("file tree can expand folders and open a file", async ({ page, gotoSession }) => {
44
await gotoSession()

packages/app/e2e/file-viewer.spec.ts renamed to packages/app/e2e/files/file-viewer.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { modKey } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { modKey } from "../utils"
33

44
test("smoke file viewer renders real file content", async ({ page, gotoSession }) => {
55
await gotoSession()

packages/app/e2e/model-picker.spec.ts renamed to packages/app/e2e/models/model-picker.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { test, expect } from "./fixtures"
2-
import { promptSelector } from "./utils"
1+
import { test, expect } from "../fixtures"
2+
import { promptSelector } from "../utils"
33

44
test("smoke model selection updates prompt footer", async ({ page, gotoSession }) => {
55
await gotoSession()

0 commit comments

Comments
 (0)