@@ -148,7 +148,6 @@ test('can package individually without moving modules to root of zip-File', t =>
148
148
npm ( [ 'i' , path ] ) ;
149
149
sls ( [ '--individually=true' , '--moveup=false' , 'package' ] ) ;
150
150
151
-
152
151
const zipfiles_hello = listZipFiles ( '.serverless/hello.zip' ) ;
153
152
t . false (
154
153
zipfiles_hello . includes ( `fn2${ sep } __init__.py` ) ,
@@ -232,7 +231,12 @@ test('can package individually without moving modules to root of zip-File with o
232
231
process . chdir ( 'tests/base' ) ;
233
232
const path = npm ( [ 'pack' , '../..' ] ) ;
234
233
npm ( [ 'i' , path ] ) ;
235
- sls ( [ '--individually=true' , '--moveup=false' , '--useStaticCache=true' , 'package' ] ) ;
234
+ sls ( [
235
+ '--individually=true' ,
236
+ '--moveup=false' ,
237
+ '--useStaticCache=true' ,
238
+ 'package'
239
+ ] ) ;
236
240
237
241
const zipfiles_hello = listZipFiles ( '.serverless/hello.zip' ) ;
238
242
t . false (
@@ -317,8 +321,13 @@ test('can package individually without moving modules to root of zip-File with u
317
321
process . chdir ( 'tests/base' ) ;
318
322
const path = npm ( [ 'pack' , '../..' ] ) ;
319
323
npm ( [ 'i' , path ] ) ;
320
- sls ( [ '--individually=true' , '--moveup=false' , '--useStaticCache=true' , '--useDownloadCache=true' , 'package' ] ) ;
321
-
324
+ sls ( [
325
+ '--individually=true' ,
326
+ '--moveup=false' ,
327
+ '--useStaticCache=true' ,
328
+ '--useDownloadCache=true' ,
329
+ 'package'
330
+ ] ) ;
322
331
323
332
const zipfiles_hello = listZipFiles ( '.serverless/hello.zip' ) ;
324
333
t . false (
@@ -399,7 +408,6 @@ test('can package individually without moving modules to root of zip-File with u
399
408
t . end ( ) ;
400
409
} ) ;
401
410
402
-
403
411
/*
404
412
* News tests not in test.bats
405
413
*/
0 commit comments