A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: passkey test update

+11
+11
tests/components/transformer/output/refiner/track-uri-passkey/test.ts
··· 120 120 121 121 it("ready becomes true after connectedCallback resolves the IDB key check", async () => { 122 122 const result = await testWeb(async () => { 123 + const idbMod = await import( 124 + "~/components/output/polymorphic/indexed-db/element.js" 125 + ); 123 126 const mod = await import( 124 127 "~/components/transformer/output/refiner/track-uri-passkey/element.js" 125 128 ); 129 + 130 + // connectedCallback calls super.connectedCallback() which requires 131 + // an output-selector attribute pointing to a real output element 132 + const output = new idbMod.CLASS(); 133 + output.id = "test-idb-passkey"; 134 + document.body.append(output); 135 + 126 136 const t = new mod.CLASS(); 137 + t.setAttribute("output-selector", "#test-idb-passkey"); 127 138 document.body.append(t); 128 139 129 140 // ready() starts false; connectedCallback loads the key from IDB