File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ require ( 'core-js/es6/array' ) ;
34var a = require ( 'array-tools' ) ;
45var transform = require ( './transform' ) ;
56
Original file line number Diff line number Diff line change 11'use strict'
2+ require ( 'core-js/es6/array' )
23var a = require ( 'array-tools' )
34var transform = require ( './transform' )
45
Original file line number Diff line number Diff line change 22var test = require ( 'tape' )
33var parse = require ( '../' )
44
5- test ( 'valid json out' , function ( t ) {
5+ test ( 'api: valid json out' , function ( t ) {
66 t . plan ( 1 )
77 var stream = parse ( { src : 'test/fixture/chainable.js' } )
88 stream . on ( 'readable' , function ( ) {
@@ -14,7 +14,7 @@ test('valid json out', function (t) {
1414 } )
1515} )
1616
17- test ( 'glob expression' , function ( t ) {
17+ test ( 'api: glob expression' , function ( t ) {
1818 t . plan ( 2 )
1919 var stream = parse ( { src : 'lib/*.js' } )
2020 stream . on ( 'readable' , function ( ) {
You can’t perform that action at this time.
0 commit comments