File tree 1 file changed +3
-2
lines changed
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
7
7
export const patchPackageTarballPath = resolve (
8
8
fs
9
9
. 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 ] ,
11
11
)
12
12
13
13
export function runIntegrationTest ( {
@@ -40,6 +40,7 @@ export function runIntegrationTest({
40
40
{
41
41
cwd : tmpDir . name ,
42
42
throwOnError : false ,
43
+ shell : true ,
43
44
} ,
44
45
)
45
46
@@ -64,7 +65,7 @@ export function runIntegrationTest({
64
65
expect ( snapshots && snapshots . length ) . toBeTruthy ( )
65
66
} )
66
67
if ( snapshots ) {
67
- snapshots . forEach ( snapshot => {
68
+ snapshots . forEach ( ( snapshot ) => {
68
69
const snapshotDescriptionMatch = snapshot . match ( / S N A P S H O T : ( .* ) / )
69
70
if ( snapshotDescriptionMatch ) {
70
71
it ( snapshotDescriptionMatch [ 1 ] , ( ) => {
You can’t perform that action at this time.
0 commit comments