UNPKG

298 BJavaScriptView Raw
1var test = require('tap').test;
2var detective = require('../');
3var fs = require('fs');
4var src = fs.readFileSync(__dirname + '/files/rest-spread.js');
5
6test('rest-spread', function (t) {
7 t.doesNotThrow(detective.bind(detective, src), 'Files with rest or spread do not throw')
8 t.end();
9});