Skip to content

Commit 479e45c

Browse files
vanishcodeclaudiahdz
authored andcommitted
style: fix lint error with no trailing comma
PR-URL: #1416 Credit: @vanishcode Close: #1416 Reviewed-by: @claudiahdz
1 parent 1aec4cb commit 479e45c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/tap/doctor-ping-registry-404.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ t.test('setup', (t) => {
5454
_hasShrinkwrap: false,
5555
dist: {
5656
shasum: 'deadbeef',
57-
tarball: 'https://reg.eh/npm-0.0.0.tgz',
58-
},
59-
},
60-
},
57+
tarball: 'https://reg.eh/npm-0.0.0.tgz'
58+
}
59+
}
60+
}
6161
})
6262
)
6363
const fixture = new Tacks(
6464
Dir({
6565
[path.basename(PKG)]: Dir({
66-
'package.json': File({ name: 'npm', version: '0.0.0' }),
66+
'package.json': File({ name: 'npm', version: '0.0.0' })
6767
}),
68-
[path.basename(PREFIX)]: Dir({}),
68+
[path.basename(PREFIX)]: Dir({})
6969
})
7070
)
7171
fixture.create(ROOT)
@@ -75,7 +75,7 @@ t.test('setup', (t) => {
7575
loglevel: 'silent',
7676
cache: CACHE,
7777
tmp: TMP,
78-
prefix: PREFIX,
78+
prefix: PREFIX
7979
},
8080
(err) => {
8181
t.ifError(err, 'npm loaded successfully')

0 commit comments

Comments
 (0)