Skip to content

Instantly share code, notes, and snippets.

@Raynos
Created May 26, 2014 01:39
Show Gist options
  • Save Raynos/0af91b6dc9494cac8942 to your computer and use it in GitHub Desktop.
Save Raynos/0af91b6dc9494cac8942 to your computer and use it in GitHub Desktop.
var test = require('tape');
test('setup entire integration test', function (assert) {
series([
spawnRedis,
spawnChildProcess
], assert.end.bind(assert))
})
process.nextTick(function () {
test('teardown entire integration test', function (assert) {
series([
teardownRedis,
teardownChildProcess
], assert.end.bind(assert))
})
})
module.exports = test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment