From d9ff09f182ff0a48fea37bcca60e34e2421d954f Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 6 Dec 2024 14:20:20 -0800 Subject: [PATCH] Try printing test completion when they are done, not sure if this will work until tests are worked out. --- perf/main.mjs | 4 +++- test/main.mjs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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 <') }) -- 2.34.1