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

Added missing server shutdown to interop test runner

parent 7eb6bb99
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,9 @@ describe('Interop tests', function() { ...@@ -48,6 +48,9 @@ describe('Interop tests', function() {
port = 'localhost:' + server_obj.port; port = 'localhost:' + server_obj.port;
done(); done();
}); });
after(function() {
server.shutdown();
});
// This depends on not using a binary stream // This depends on not using a binary stream
it('should pass empty_unary', function(done) { it('should pass empty_unary', function(done) {
interop_client.runTest(port, name_override, 'empty_unary', true, done); interop_client.runTest(port, name_override, 'empty_unary', true, done);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment