Skip to content

Commit 24826f5

Browse files
committed
fix tests
1 parent 9b4ba9b commit 24826f5

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/api.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,3 @@ runner.test('api: valid json out', function () {
1010
var data = jsdocParse(jsdocOutput)
1111
a.strictEqual(data[0].name, 'Chainable')
1212
})
13-
14-
test('api: conf', function (t) {
15-
t.plan(1)
16-
var stream = parse({ src: 'test/fixture/simple.js', conf: 'test/fixture/conf.json' })
17-
stream.on('readable', function () {
18-
var chunk = this.read()
19-
if (chunk) {
20-
var data = JSON.parse(chunk)
21-
t.strictEqual(data[0].description, 'A VARIABLE')
22-
}
23-
})
24-
})

0 commit comments

Comments
 (0)