We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8235a commit bffcea3Copy full SHA for bffcea3
test/clone.js
@@ -44,15 +44,10 @@ if (argv.disabled) {
44
testPackages = disabledPackages
45
} else {
46
test('Disabled Packages', function (t) {
47
- if (disabledPackages.length === 0) {
48
- t.pass('no disabled packages')
49
- t.end()
50
- } else {
51
- t.plan(disabledPackages.length)
52
- disabledPackages.forEach(function (pkg) {
53
- t.pass('DISABLED: ' + pkg.name + ': ' + pkg.disable + ' (' + pkg.repo + ')')
54
- })
55
- }
+ disabledPackages.forEach(function (pkg) {
+ console.log('DISABLED: ' + pkg.name + ': ' + pkg.disable + ' (' + pkg.repo + ')')
+ })
+ t.end()
56
})
57
}
58
0 commit comments