mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
12 lines
224 B
JavaScript
Executable File
12 lines
224 B
JavaScript
Executable File
var test = require('tape');
|
|
|
|
if (typeof setImmediate === 'undefined') setImmediate = process.nextTick;
|
|
setImmediate(function() {
|
|
test('end', function(t) {
|
|
t.end();
|
|
process.exit();
|
|
});
|
|
});
|
|
|
|
module.exports = test;
|