fix(core): update

This commit is contained in:
2024-03-07 13:10:57 +01:00
parent 033a0a806c
commit f305547116
4 changed files with 230 additions and 177 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tstest',
version: '1.0.86',
version: '1.0.87',
description: 'a test utility to run tests that match test/**/*.ts'
}

View File

@@ -174,10 +174,10 @@ export class TsTest {
// Execute the exported test function
await testModule.runTest();
} else {
originalError('Test module does not export runTest function.');
console.error('Test module does not export runTest function.');
}
} catch (err) {
originalError(err);
console.error(err);
}
return logStore.join('\n');