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-manifest.js | |
parent | 0b003ef2c3c9029a2d92dfc23d760de895e0d7a4 (diff) |
Return an error code when promise main() functions fail (#1002)
Diffstat (limited to 'test/test-manifest.js')
-rw-r--r-- | test/test-manifest.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-manifest.js b/test/test-manifest.js index 230e6139..cd2413b9 100644 --- a/test/test-manifest.js +++ b/test/test-manifest.js @@ -18,7 +18,7 @@ const fs = require('fs'); const path = require('path'); const assert = require('assert'); -const {getDefaultManifest, createManifestString} = require('../dev/util'); +const {getDefaultManifest, createManifestString, testMain} = require('../dev/util'); function loadManifestString() { @@ -38,4 +38,4 @@ function main() { } -if (require.main === module) { main(); } +if (require.main === module) { testMain(main); } |