[READ-ONLY] Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

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

Add run time to unit tests

Grace Kind (May 16, 2026, 12:38 AM -0500) 6e442ddd ec48cc2b

+4
+4
tests/unit/runTests.js
··· 15 15 } 16 16 17 17 const results = []; 18 + const startTime = Date.now(); 18 19 19 20 for (const testFile of testFiles) { 20 21 try { ··· 35 36 for (const result of failed) { 36 37 console.error(`${result.name} - ${result.error}`); 37 38 } 39 + 40 + const totalRunTime = ((Date.now() - startTime) / 1000).toFixed(2); 41 + console.info(`Run time: ${totalRunTime}s`); 38 42 39 43 const success = failed.length === 0; 40 44