Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/api/internal/webassets/dist/200.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link href="/_app/immutable/chunks/DW3kQQoy.js" rel="modulepreload">
<link href="/_app/immutable/chunks/C_k7S6uP.js" rel="modulepreload">
<link href="/_app/immutable/chunks/CdMmG0It.js" rel="modulepreload">
<link href="/_app/immutable/entry/app.Dphjwod_.js" rel="modulepreload">
<link href="/_app/immutable/entry/app.Sw08gAEk.js" rel="modulepreload">
<link href="/_app/immutable/chunks/hkTcnU92.js" rel="modulepreload">
<link href="/_app/immutable/chunks/C4zZrd5v.js" rel="modulepreload">
<link href="/_app/immutable/chunks/BT1mfnim.js" rel="modulepreload">
Expand All @@ -31,7 +31,7 @@

Promise.all([
import("/_app/immutable/entry/start.B5nAz7AJ.js"),
import("/_app/immutable/entry/app.Dphjwod_.js")
import("/_app/immutable/entry/app.Sw08gAEk.js")
]).then(([kit, app]) => {
kit.start(app, element);
});
Expand Down
66 changes: 66 additions & 0 deletions apps/api/internal/webassets/dist/_app/immutable/chunks/CkFGIl7_.js

Large diffs are not rendered by default.

66 changes: 0 additions & 66 deletions apps/api/internal/webassets/dist/_app/immutable/chunks/Vg7HUXRy.js

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import"../chunks/MdChrzMr.js";import{C as p}from"../chunks/CkFGIl7_.js";function m(o){p(o,{})}export{m as component};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions apps/api/internal/webassets/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
<link href="./_app/immutable/chunks/DW3kQQoy.js" rel="modulepreload">
<link href="./_app/immutable/chunks/C_k7S6uP.js" rel="modulepreload">
<link href="./_app/immutable/chunks/CdMmG0It.js" rel="modulepreload">
<link href="./_app/immutable/entry/app.Dphjwod_.js" rel="modulepreload">
<link href="./_app/immutable/entry/app.Sw08gAEk.js" rel="modulepreload">
<link href="./_app/immutable/chunks/hkTcnU92.js" rel="modulepreload">
<link href="./_app/immutable/chunks/C4zZrd5v.js" rel="modulepreload">
<link href="./_app/immutable/chunks/BT1mfnim.js" rel="modulepreload">
<link href="./_app/immutable/chunks/MdChrzMr.js" rel="modulepreload">
<link href="./_app/immutable/nodes/0.B542J3-l.js" rel="modulepreload">
<link href="./_app/immutable/chunks/CwH2Dhnc.js" rel="modulepreload">
<link href="./_app/immutable/nodes/2.C6_wREb2.js" rel="modulepreload">
<link href="./_app/immutable/chunks/Vg7HUXRy.js" rel="modulepreload">
<link href="./_app/immutable/nodes/2.DumonnWb.js" rel="modulepreload">
<link href="./_app/immutable/chunks/CkFGIl7_.js" rel="modulepreload">

<link href="./_app/immutable/assets/0.DeZxIIxo.css" rel="stylesheet">
<link href="./_app/immutable/assets/ChatApp.CwQVSL7D.css" rel="stylesheet">
Expand All @@ -35,7 +35,7 @@

Promise.all([
import("./_app/immutable/entry/start.B5nAz7AJ.js"),
import("./_app/immutable/entry/app.Dphjwod_.js")
import("./_app/immutable/entry/app.Sw08gAEk.js")
]).then(([kit, app]) => {
kit.start(app, element);
});
Expand Down
6 changes: 5 additions & 1 deletion tests/e2e/chat.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ test("browser notifications require explicit profile opt-in", async ({ page }) =
.click({ button: "right" });
await expect(page.getByRole("heading", { name: "Profile settings" })).toBeVisible();

await page.getByLabel("Browser notifications").check();
const browserNotifications = page
.locator("label.check-field", { hasText: "Browser notifications" })
.locator("input[type='checkbox']");
await expect(browserNotifications).toBeEnabled();
await browserNotifications.check();

await expect
.poll(() => page.evaluate((key) => localStorage.getItem(key), storageKey))
Expand Down
Loading