Skip to content

Commit

Permalink
Started empty server test.
Browse files Browse the repository at this point in the history
  • Loading branch information
deestan committed Mar 25, 2015
1 parent 805845a commit b5a613b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/server.js
@@ -0,0 +1,17 @@
var assert = require('assert');
var chhaang = require('../core');

describe("server with no extensions enabled", function() {
var server;

beforeEach(function(done) {
chhaang({}, function(err, createdServer) {
server = createdServer;
done(err);
});
});

it("has a test", function() {
assert(server);
});
});

0 comments on commit b5a613b

Please sign in to comment.