我有一个angularJS应用程序,现在我想开始对其进行测试。
因此,我看了一些教程,但是没有一个教程向您展示如何使用Visual Studio 2015进行测试。
有谁知道一个很好的阅读资源,或者可以帮助我进行设置。

我的问题是:

  • 是否需要为每个测试设置单独的 View ?
  • 除了安装karma-jasmine和karma-chrome-launcher,我还需要安装其他东西吗?
  • 如何在浏览器中查看测试?

  • 提供的任何帮助都将非常棒。

    最佳答案

    我建议您尝试使用Chutzpah(可以插入VS2015),它可以与Jasmine一起使用,您可以在VS输出控制台和浏览器中查看测试结果。

    Chutzpah on Github

    Chutzpah extensions for VS

    使用Chutzpah在VS2015上的我的Helloworld示例:

    helloworld.js:

    function helloWorld(){
        return "Hello world!";
    }
    function examples() {
        return package = {
            first: 13,
            second: 13,
            third: "gone"
        }
    }
    

    helloworldspec.js:
    /// <reference path="helloworld.js" />
    
    describe("Hello world", function () {
        it("says hello", function() {
            expect(helloWorld()).toContain("Hello");
        });
    });
    describe("Examples", function () {
        it("examples", function () {
            expect(examples().first).toBe(13);
            expect(examples().third).not.toBe(13);
            expect(examples().third).not.toMatch(/gz/);
            expect(examples().third).toMatch('go');
        });
    });
    

    10-05 22:48