add simple fuzz test

This commit is contained in:
Asraelite 2016-03-27 20:26:53 +01:00
parent 0a90b6b77a
commit 27520842e3
59 changed files with 191 additions and 34 deletions

12
test.js
View file

@ -1,3 +1,13 @@
#!bin/node
console.log('No tests to run');
'use strict';
process.env.PORT = 28256; // Unused as far as I know.
require('./server/')();
setTimeout(_ => {
wingbase.debug('Starting tests.');
require('./tests');
}, 1000);