fix: add .js suffix to import of internal utils
Some checks failed
Playwright Tests / test (push) Has been cancelled

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2026-02-11 18:33:17 -05:00
parent 9a0f1c3d35
commit 0451f46738
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -1,6 +1,6 @@
import type { ElectronApplication } from "playwright"
import {_electron as electron} from "playwright";
import { addConsoleListener } from "./internal-util";
import { addConsoleListener } from "./internal-util.js";
const singleton: {
app: ElectronApplication | null