From ef0a289c771a09cf7c739df47cb6ca3d6489ed51 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 23 Jul 2015 12:50:24 -0700 Subject: [PATCH] Remove exit test --- tests/cases/unittests/session.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/cases/unittests/session.ts b/tests/cases/unittests/session.ts index 25be08293f2..c1dfd508942 100644 --- a/tests/cases/unittests/session.ts +++ b/tests/cases/unittests/session.ts @@ -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"};