File tree 2 files changed +3
-3
lines changed
fixtures/kitchensink/integration
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ case 'test':
14
14
{ stdio : 'inherit' }
15
15
) ;
16
16
if ( result . signal ) {
17
- if ( result . signal == 'SIGKILL' ) {
17
+ if ( result . signal === 'SIGKILL' ) {
18
18
console . log (
19
19
'The build failed because the process exited too early. ' +
20
20
'This probably means the system ran out of memory or someone called ' +
21
21
'`kill -9` on the process.'
22
22
) ;
23
- } else if ( result . signal == 'SIGTERM' ) {
23
+ } else if ( result . signal === 'SIGTERM' ) {
24
24
console . log (
25
25
'The build failed because the process exited too early. ' +
26
26
'Someone might have called `kill` or `killall`, or the system could ' +
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if (process.env.E2E_FILE) {
15
15
const markup = fs . readFileSync ( file , 'utf8' )
16
16
getMarkup = ( ) => markup
17
17
18
- const pathPrefix = process . env . PUBLIC_URL . replace ( / ^ h t t p s ? : \/ \/ [ ^ \ /] + \/ ? / , '' )
18
+ const pathPrefix = process . env . PUBLIC_URL . replace ( / ^ h t t p s ? : \/ \/ [ ^ / ] + \/ ? / , '' )
19
19
20
20
resourceLoader = ( resource , callback ) => callback (
21
21
null ,
You can’t perform that action at this time.
0 commit comments