Blame view

node_modules/detective/test/chained.js 249 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
  var test = require('tap').test;
  var detective = require('../');
  var fs = require('fs');
  var src = fs.readFileSync(__dirname + '/files/chained.js');
  
  test('chained', function (t) {
      t.deepEqual(detective(src), [ 'c', 'b', 'a' ]);
      t.end();
  });