Skip to content

Commit

Permalink
start tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ichiriac committed Jan 5, 2017
1 parent 1e73060 commit 7e36baf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/indexTest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*!
* Copyright (C) 2017 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/docblock-parser/graphs/contributors
* @url http://glayzzle.com/docblock-parser
*/
var DocBlockParser = require('../src/index');

describe('Test API', function() {
var doc = new DocBlockParser();
it('should parse something', function() {
var ast = doc.parse('Hello world');
console.log(ast);
});
});

0 comments on commit 7e36baf

Please sign in to comment.