style: oxfmt

This commit is contained in:
Peter Steinberger
2026-01-17 08:01:40 +00:00
parent f3f80509e3
commit a3daf3d115
2 changed files with 7 additions and 5 deletions

View File

@@ -200,11 +200,15 @@ describe("chrome extension relay server", () => {
}>,
(list) =>
list.some(
(t) => t.id === "t1" && t.url === "https://www.derstandard.at/" && t.title === "DER STANDARD",
(t) =>
t.id === "t1" && t.url === "https://www.derstandard.at/" && t.title === "DER STANDARD",
),
);
expect(
list2.some((t) => t.id === "t1" && t.url === "https://www.derstandard.at/" && t.title === "DER STANDARD"),
list2.some(
(t) =>
t.id === "t1" && t.url === "https://www.derstandard.at/" && t.title === "DER STANDARD",
),
).toBe(true);
const cdp = new WebSocket(`ws://127.0.0.1:${port}/cdp`);