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 9b4ba9b commit 24826f5Copy full SHA for 24826f5
test/api.js
@@ -10,15 +10,3 @@ runner.test('api: valid json out', function () {
10
var data = jsdocParse(jsdocOutput)
11
a.strictEqual(data[0].name, 'Chainable')
12
})
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