Skip to content

Commit f2fa3b9

Browse files
committed
fix test
1 parent d553e58 commit f2fa3b9

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

es5/publish.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22

3+
require('core-js/es6/array');
34
var a = require('array-tools');
45
var transform = require('./transform');
56

lib/publish.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict'
2+
require('core-js/es6/array')
23
var a = require('array-tools')
34
var transform = require('./transform')
45

test/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var test = require('tape')
33
var 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 () {

0 commit comments

Comments
 (0)