mirror of
https://github.com/maputnik/editor.git
synced 2026-07-09 07:27:35 +00:00
f7b48139a4
Mechanical rename of it() -> test() and describe() -> test.describe() so the subsequent Playwright migration diff only touches test bodies, not the suite/case wrappers.
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { MaputnikDriver } from "./maputnik-driver";
|
|
|
|
test.describe("i18n", () => {
|
|
const { beforeAndAfter, get, when, then } = new MaputnikDriver();
|
|
beforeAndAfter();
|
|
|
|
test.describe("language detector", () => {
|
|
test("English", () => {
|
|
const url = "?lng=en";
|
|
when.visit(url);
|
|
then(get.elementByTestId("maputnik-lang-select")).shouldHaveValue("en");
|
|
});
|
|
|
|
test("Japanese", () => {
|
|
const url = "?lng=ja";
|
|
when.visit(url);
|
|
then(get.elementByTestId("maputnik-lang-select")).shouldHaveValue("ja");
|
|
});
|
|
});
|
|
|
|
test.describe("language switcher", () => {
|
|
beforeEach(() => {
|
|
when.setStyle("layer");
|
|
});
|
|
|
|
test("the language switcher switches to Japanese", () => {
|
|
const selector = "maputnik-lang-select";
|
|
then(get.elementByTestId(selector)).shouldExist();
|
|
when.select(selector, "ja");
|
|
then(get.elementByTestId(selector)).shouldHaveValue("ja");
|
|
|
|
then(get.elementByTestId("nav:settings")).shouldHaveText("スタイル設定");
|
|
});
|
|
});
|
|
});
|