Created
May 26, 2014 01:39
-
-
Save Raynos/0af91b6dc9494cac8942 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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