mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-17 21:41:06 +00:00
Created test scaffolding
This commit is contained in:
parent
50cabfc594
commit
457f91ff3e
1 changed files with 9 additions and 5 deletions
|
|
@ -1,7 +1,10 @@
|
|||
var boot = require('../app').boot,
|
||||
shutdown = require('../app').shutdown,
|
||||
port = require('../app').port,
|
||||
|
||||
port = require('../app').port;
|
||||
|
||||
it('passes', function() {
|
||||
return true;
|
||||
});
|
||||
describe("Server", function() {
|
||||
if("Is running", function(done) {
|
||||
var client = net.Socket();
|
||||
|
|
@ -10,6 +13,7 @@ var boot = require('../app').boot,
|
|||
done();
|
||||
});
|
||||
client.on('error', function(err) {
|
||||
done(err);
|
||||
})
|
||||
});
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
Loading…
Reference in a new issue