Files
code-server/test/e2e/appName.test.ts
2026-05-21 12:22:29 -08:00

10 lines
346 B
TypeScript

import { version } from "../../src/node/constants"
import { describe, test, expect } from "./baseFixture"
const appName = "testnäme"
describe("--app-name", [`--app-name=${appName}`], {}, () => {
test("should use app-name for the title", async ({ codeServerPage }) => {
expect(await codeServerPage.page.title()).toContain(appName)
})
})