deps-parser.js 319 B

12345678910111213
  1. // shiv the document to provide dummy object
  2. global.document = {
  3. createElement: function () { return {} }
  4. }
  5. var DepsParser = require('../../src/deps-parser'),
  6. assert = require('assert')
  7. describe('UNIT: Dependency Parser', function () {
  8. it('should work', function () {
  9. assert.ok(true)
  10. })
  11. })