@@ -95,16 +95,16 @@ describe('Real-world Integration Scenarios', () => {
9595 'Using output path: build/encoded'
9696 )
9797 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
98- 'Encrypting files: *.blade.php config/*.php'
98+ 'Encrypting files: *.blade.php, config/*.php'
9999 )
100100 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
101- 'Adding a path to skip: */vendor/* */tests/* */node_modules/*'
101+ 'Adding a path to skip: */vendor/*, */tests/*, */node_modules/*'
102102 )
103103 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
104- 'Adding ignore path: */cache/* */logs/* */sessions/*'
104+ 'Adding ignore path: */cache/*, */logs/*, */sessions/*'
105105 )
106106 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
107- 'Adding copy path: *.json *.txt *.md public/*'
107+ 'Adding copy path: *.json, *.txt, *.md, public/*'
108108 )
109109 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
110110 'status' ,
@@ -172,10 +172,10 @@ describe('Real-world Integration Scenarios', () => {
172172 await main . run ( )
173173
174174 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
175- 'Encrypting files: config/*.php database/*.php'
175+ 'Encrypting files: config/*.php, database/*.php'
176176 )
177177 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
178- 'Adding a path to skip: */public/* */resources/*'
178+ 'Adding a path to skip: */public/*, */resources/*'
179179 )
180180 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
181181 'status' ,
@@ -197,7 +197,7 @@ describe('Real-world Integration Scenarios', () => {
197197 'Encrypting files: *.blade.php'
198198 )
199199 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
200- 'Adding a path to skip: */vendor/* */app/*'
200+ 'Adding a path to skip: */vendor/*, */app/*'
201201 )
202202 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
203203 'status' ,
@@ -245,10 +245,10 @@ describe('Real-world Integration Scenarios', () => {
245245 await main . run ( )
246246
247247 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
248- 'Adding copy path: *.json *.xml *.txt *.md *.yml *.yaml'
248+ 'Adding copy path: *.json, *.xml, *.txt, *.md, *.yml, *.yaml'
249249 )
250250 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
251- 'Adding ignore path: */cache/* */logs/*'
251+ 'Adding ignore path: */cache/*, */logs/*'
252252 )
253253 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
254254 'status' ,
@@ -268,10 +268,10 @@ describe('Real-world Integration Scenarios', () => {
268268 await main . run ( )
269269
270270 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
271- 'Adding ignore path: */cache/* */logs/* */tmp/* */temp/* *.log *.cache'
271+ 'Adding ignore path: */cache/*, */logs/*, */tmp/*, */temp/*, *.log, *.cache'
272272 )
273273 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
274- 'Adding a path to skip: */test/* */tests/* */Test/*'
274+ 'Adding a path to skip: */test/*, */tests/*, */Test/*'
275275 )
276276 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
277277 'status' ,
@@ -292,7 +292,7 @@ describe('Real-world Integration Scenarios', () => {
292292 await main . run ( )
293293
294294 expect ( mocks . debugMock ) . toHaveBeenCalledWith (
295- 'Using reflection for: App\\Models\\* App\\Controllers\\*'
295+ 'Using reflection for: App\\Models\\*, App\\Controllers\\*'
296296 )
297297 expect ( mocks . setOutputMock ) . toHaveBeenCalledWith (
298298 'status' ,
0 commit comments