/
githubmirror
/
code-server
Обзор
Документация
Войти
/
githubmirror
/
code-server
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.124.2
test/e2e/appName.test.ts
9 строк
346 B
Micah Zoltu
Apply --app-name to web page titles (#7794)
21 май 2026, 23:22
Не верифицирован
21 май 2026, 23:22
238769e
Код
Авторство
О чём код?
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) }) })