fix(smartdeno): normalize stderr output to an empty string and update build configuration

This commit is contained in:
2026-04-30 17:32:30 +00:00
parent 78a5615bb5
commit f93d3e2cfe
10 changed files with 2378 additions and 1753 deletions
+3
View File
@@ -15,6 +15,9 @@ tap.test('should throw when executing before start', async () => {
await testSmartdeno.executeScript('console.log("test")');
} catch (e) {
threw = true;
if (!(e instanceof Error)) {
throw e;
}
expect(e.message).toInclude('not started');
}
expect(threw).toBeTrue();