File tree 1 file changed +2
-7
lines changed
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const {
10
10
} = require ( '../common/child_process' ) ;
11
11
const path = require ( 'path' ) ;
12
12
const fs = require ( 'fs' ) ;
13
+ const os = require ( 'os' ) ;
13
14
14
15
tmpdir . refresh ( ) ;
15
16
common . allowGlobals ( global . require ) ;
@@ -152,12 +153,6 @@ for (const extraSnapshotArgs of [
152
153
{ cwd : tmpdir . path } ) ;
153
154
}
154
155
155
- // Skipping rest of the test on Windows because it fails in the CI
156
- // TODO(StefanStojanovic): Reenable rest of the test after fixing it
157
- if ( common . isWindows ) {
158
- return ;
159
- }
160
-
161
156
// Guarantee NODE_REPL_EXTERNAL_MODULE won't bypass kDisableNodeOptionsEnv
162
157
{
163
158
spawnSyncAndExit (
@@ -172,6 +167,6 @@ if (common.isWindows) {
172
167
{
173
168
status : 9 ,
174
169
signal : null ,
175
- stderr : `${ binary } : NODE_REPL_EXTERNAL_MODULE can't be used with kDisableNodeOptionsEnv\n ` ,
170
+ stderr : `${ binary } : NODE_REPL_EXTERNAL_MODULE can't be used with kDisableNodeOptionsEnv${ os . EOL } ` ,
176
171
} ) ;
177
172
}
You can’t perform that action at this time.
0 commit comments