mirror of
https://github.com/coder/code-server.git
synced 2026-05-22 12:17:26 +02:00
10 lines
346 B
TypeScript
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)
|
|
})
|
|
})
|