使用Resharper测试运行器

时间:2015-12-17 22:09:23

标签: typescript jasmine resharper

我已经开始混合 TypeScript Jasmine 来测试我的项目。我在 Visual Studio 2015 上使用 Resharper 10 进行测试。这是我的样本测试:

/// <reference path="../scripts/typings/jasmine/jasmine.d.ts" />

var HomeViewModel = require("../app/viewmodels/home.ts");

describe("Something", ()=> {

    it("This test is ok.", () => {
        expect(23).toBe(23);
    });

    it("Home View Model", () => {
      var vm = new HomeViewModel();
      expect(vm.title).toBe("Home");
    });
});

但是当我使用 Resharper 运行测试时,它说:

Inconclusive: Test not run.

但是,如果我删除了第二个测试,那么它将通过import行。

我的考试有什么问题?

0 个答案:

没有答案