From: Chris Duncan Date: Fri, 6 Dec 2024 22:20:20 +0000 (-0800) Subject: Try printing test completion when they are done, not sure if this will work until... X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=d9ff09f182ff0a48fea37bcca60e34e2421d954f;p=libnemo.git Try printing test completion when they are done, not sure if this will work until tests are worked out. --- diff --git a/perf/main.mjs b/perf/main.mjs index eb99a2e..b80898f 100644 --- a/perf/main.mjs +++ b/perf/main.mjs @@ -4,4 +4,6 @@ import './account.perf.js' import './wallet.perf.js' -console.log('> TESTING COMPLETE <') +document.addEventListener('load', () => { + console.log('> TESTING COMPLETE <') +}) diff --git a/test/main.mjs b/test/main.mjs index b9c4203..6465627 100644 --- a/test/main.mjs +++ b/test/main.mjs @@ -10,6 +10,6 @@ import './refresh-accounts.test.mjs' import './sign-blocks.test.mjs' import './tools.test.mjs' -document.addEventListener('DOMContentLoaded', () => { +document.addEventListener('load', () => { console.log('> TESTING COMPLETE <') })