@@ -227,7 +227,7 @@ t.test('team ls <scope>', t => {
227
227
'npmcli:designers' ,
228
228
'npmcli:product' ,
229
229
]
230
- }
230
+ } ,
231
231
}
232
232
233
233
const team = requireInject ( '../../lib/team.js' , {
@@ -293,7 +293,7 @@ t.test('team ls <scope>', t => {
293
293
const libnpmteam = {
294
294
async lsTeams ( ) {
295
295
return [ ]
296
- }
296
+ } ,
297
297
}
298
298
299
299
const team = requireInject ( '../../lib/team.js' , {
@@ -314,7 +314,7 @@ t.test('team ls <scope>', t => {
314
314
const libnpmteam = {
315
315
async lsTeams ( ) {
316
316
return [ 'npmcli:developers' ]
317
- }
317
+ } ,
318
318
}
319
319
320
320
const team = requireInject ( '../../lib/team.js' , {
@@ -337,8 +337,8 @@ t.test('team ls <scope>', t => {
337
337
t . test ( 'team ls <scope:team>' , t => {
338
338
const libnpmteam = {
339
339
async lsUsers ( ) {
340
- return [ 'nlf' , 'ruyadorno' , 'darcyclarke' , 'isaacs' ]
341
- }
340
+ return [ 'nlf' , 'ruyadorno' , 'darcyclarke' , 'isaacs' ]
341
+ } ,
342
342
}
343
343
const team = requireInject ( '../../lib/team.js' , {
344
344
...mocks ,
@@ -404,7 +404,7 @@ t.test('team ls <scope:team>', t => {
404
404
const libnpmteam = {
405
405
async lsUsers ( ) {
406
406
return [ ]
407
- }
407
+ } ,
408
408
}
409
409
410
410
const team = requireInject ( '../../lib/team.js' , {
@@ -425,7 +425,7 @@ t.test('team ls <scope:team>', t => {
425
425
const libnpmteam = {
426
426
async lsUsers ( ) {
427
427
return [ 'foo' ]
428
- }
428
+ } ,
429
429
}
430
430
431
431
const team = requireInject ( '../../lib/team.js' , {
@@ -547,7 +547,7 @@ t.test('completion', t => {
547
547
res ( )
548
548
} ) )
549
549
550
- await [ 'create' , 'destroy' , 'add' , 'rm' , 'ls' ] . map ( check )
550
+ await [ 'create' , 'destroy' , 'add' , 'rm' , 'ls' ] . map ( check )
551
551
} )
552
552
553
553
t . test ( 'npm team unknown subcommand autocomplete' , t => {
0 commit comments