]> zoso.dev Git - libnemo.git/commitdiff
Try printing test completion when they are done, not sure if this will work until...
authorChris Duncan <chris@zoso.dev>
Fri, 6 Dec 2024 22:20:20 +0000 (14:20 -0800)
committerChris Duncan <chris@zoso.dev>
Fri, 6 Dec 2024 22:20:20 +0000 (14:20 -0800)
perf/main.mjs
test/main.mjs

index eb99a2e79ef0f27f1215565e71ea30cfaf527bf3..b80898f238ab90128c5ccab2d8a2b0a416d8fff2 100644 (file)
@@ -4,4 +4,6 @@
 import './account.perf.js'
 import './wallet.perf.js'
 
-console.log('> TESTING COMPLETE <')
+document.addEventListener('load', () => {
+       console.log('> TESTING COMPLETE <')
+})
index b9c42039fca4653d9657d257738033948e24b558..6465627682a7ee99ec14de22ea5244a56f4828a4 100644 (file)
@@ -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 <')
 })