Added missing server shutdown to interop test runner

This commit is contained in:
murgatroid99 2015-01-26 10:45:49 -08:00
parent b62fdb2f0b
commit b8b34fdaed
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ describe('Interop tests', function() {
port = 'localhost:' + server_obj.port;
done();
});
after(function() {
server.shutdown();
});
// This depends on not using a binary stream
it('should pass empty_unary', function(done) {
interop_client.runTest(port, name_override, 'empty_unary', true, done);