orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
31 lines (24 loc) • 507 B
JavaScript
var parallel = require('../')
var test = require('tape')
test('empty tasks array', function (t) {
t.plan(1)
parallel([], function (err) {
t.error(err)
})
})
test('empty tasks object', function (t) {
t.plan(1)
parallel({}, function (err) {
t.error(err)
})
})
test('empty tasks array and no callback', function (t) {
parallel([])
t.pass('did not throw')
t.end()
})
test('empty tasks object and no callback', function (t) {
parallel({})
t.pass('did not throw')
t.end()
})