diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-07 11:34:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 11:34:14 -0500 |
commit | 7fa478295496d16bfc99dd80858544900c7b0a4c (patch) | |
tree | eaf94141835cdc7d27e58c6a0d1977c9361b1525 /test/test-object-property-accessor.js | |
parent | 0b003ef2c3c9029a2d92dfc23d760de895e0d7a4 (diff) |
Return an error code when promise main() functions fail (#1002)
Diffstat (limited to 'test/test-object-property-accessor.js')
-rw-r--r-- | test/test-object-property-accessor.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test-object-property-accessor.js b/test/test-object-property-accessor.js index 42fa3d40..b875575a 100644 --- a/test/test-object-property-accessor.js +++ b/test/test-object-property-accessor.js @@ -16,6 +16,7 @@ */ const assert = require('assert'); +const {testMain} = require('../dev/util'); const {VM} = require('../dev/vm'); const vm = new VM({}); @@ -411,4 +412,4 @@ function main() { } -if (require.main === module) { main(); } +if (require.main === module) { testMain(main); } |