File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11'use strict' ;
22
33const { promisify } = require ( 'util' ) ;
4- const exec = promisify ( require ( 'child_process' ) . exec ) ;
4+ const exec = promisify ( require ( 'child_process' ) . exec ) ;
55const { copy, remove } = require ( 'fs-extra' ) ;
66const path = require ( 'path' ) ;
77const assert = require ( 'assert' )
@@ -26,8 +26,8 @@ async function test(addon) {
2626 const { stderr, stdout } = await exec ( 'npm install' , {
2727 cwd : path . join ( ADDONS_FOLDER , addon )
2828 } )
29- console . log ( ` >Runting test for: '${ addon } '` ) ;
30- // Disabled the checks on stderr and stdout because of this issuue on npm:
29+ console . log ( ` >Running test for: '${ addon } '` ) ;
30+ // Disabled the checks on stderr and stdout because of this issue on npm:
3131 // Stop using process.umask(): https://github.com/npm/cli/issues/1103
3232 // We should enable the following checks again after the resolution of
3333 // the reported issue.
@@ -41,7 +41,6 @@ async function test(addon) {
4141 assert . strictEqual ( binding . noexcept . echo ( 103 ) , 103 ) ;
4242}
4343
44-
4544module . exports = ( async function ( ) {
4645 await beforeAll ( addons ) ;
4746 for ( const addon of addons ) {
You can’t perform that action at this time.
0 commit comments