asdf-games/node_modules/watchify/test/zzz.js

11 lines
193 B
JavaScript

var test = require('tape');
test('__END__', function (t) {
t.on('end', function () {
setTimeout(function () {
process.exit(0);
}, 100)
});
t.end();
});