Skip to content
Snippets Groups Projects
Commit c5dac97b authored by murgatroid99's avatar murgatroid99
Browse files

Added a test, enabled other tests

parent 18599e25
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ describe('server', function() {
it('tryShutdown should shutdown successfully', function(done) {
server.tryShutdown(done);
});
it.only('forceShutdown should shutdown successfully', function() {
it('forceShutdown should shutdown successfully', function() {
server.forceShutdown();
});
it('tryShutdown should be idempotent', function(done) {
......@@ -122,5 +122,9 @@ describe('server', function() {
server.forceShutdown();
server.forceShutdown();
});
it('forceShutdown should trigger tryShutdown', function(done) {
server.tryShutdown(done);
server.forceShutdown();
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment