File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { resolveRelativeFileDependencies } from "../src/resolveRelativeFileDepen
77export const patchPackageTarballPath = resolve (
88 fs
99 . readdirSync ( "." )
10- . filter ( nm => nm . match ( / ^ p a t c h - p a c k a g e \. t e s t \. \d + \. t g z $ / ) ) [ 0 ] ,
10+ . filter ( ( nm ) => nm . match ( / ^ p a t c h - p a c k a g e \. t e s t \. \d + \. t g z $ / ) ) [ 0 ] ,
1111)
1212
1313export function runIntegrationTest ( {
@@ -40,6 +40,7 @@ export function runIntegrationTest({
4040 {
4141 cwd : tmpDir . name ,
4242 throwOnError : false ,
43+ shell : true ,
4344 } ,
4445 )
4546
@@ -64,7 +65,7 @@ export function runIntegrationTest({
6465 expect ( snapshots && snapshots . length ) . toBeTruthy ( )
6566 } )
6667 if ( snapshots ) {
67- snapshots . forEach ( snapshot => {
68+ snapshots . forEach ( ( snapshot ) => {
6869 const snapshotDescriptionMatch = snapshot . match ( / S N A P S H O T : ( .* ) / )
6970 if ( snapshotDescriptionMatch ) {
7071 it ( snapshotDescriptionMatch [ 1 ] , ( ) => {
You can’t perform that action at this time.
0 commit comments