fix: destructuring pattern error
Some checks failed
Playwright Tests / test (push) Has been cancelled

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2026-02-11 18:35:05 -05:00
parent 9da9c68a5e
commit 9c9419ce9d
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -57,7 +57,7 @@ function generateVaultConfig(vault: string) {
// @ts-ignore some error about a string type now having `undefined` as part of it's union
export const test = base.extend<ObsidianTestFixtures>({
electronApp: [
async (_idk, run) => {
async ({}, run) => {
const obsidianPath = <string | undefined>inject("obsidianPath") ?? undefined;
const experimentalUseSingleton = <boolean | undefined>inject("experimentalUseSingleton") ?? false;
const vault = <string>inject("vault");