Remove exit test

This commit is contained in:
Wesley Wigham 2015-07-23 12:50:24 -07:00
parent 90bbb7fb3c
commit ef0a289c77

View File

@ -155,13 +155,6 @@ namespace ts.server {
});
});
describe("exit", () => {
it("is a noop which can be handled by subclasses", () => {
session.exit(); // Does nothing, should keep running tests
expect(session).to.exist;
});
});
describe("send", () => {
it("is an overrideable handle which sends protocol messages over the wire", () => {
const msg = {seq: 0, type: "none"};