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 10967b8 commit 8a9ee8bCopy full SHA for 8a9ee8b
test/utils.js
@@ -13,6 +13,8 @@ describe('doxdox util methods', function () {
13
14
fs.readFile(__dirname + '/fixtures/' + file + '.js', 'utf8', function (err, data) {
15
16
+ if (err) { throw err; }
17
+
18
var methods = utils.parseData(
19
dox.parseComments(data, { raw: true }),
20
file + '.js'
@@ -22,6 +24,8 @@ describe('doxdox util methods', function () {
22
24
23
25
fs.readFile(__dirname + '/fixtures/' + file + '.json', 'utf8', function (err, data) {
26
27
28
29
assert.deepEqual(methods, JSON.parse(data));
30
31
done();
0 commit comments