Allow magic in node api

This commit is contained in:
d98762625 2020-06-05 12:26:17 +01:00
parent 616b38c6fb
commit 939208903a
3 changed files with 78 additions and 1 deletions

View file

@ -152,7 +152,7 @@ class TestRegister {
result.status = "passing";
} catch (e) {
result.status = "erroring";
result.output = e.message;
result.output = `${e.message}\nError: ${e.stack}`;
}
testResults.push(result);