Visual Studio Chutzpah使用AMD模块对不同项目运行测试

时间:2015-04-17 14:02:01

标签: javascript visual-studio-2013 requirejs amd chutzpah

我在解决方案下有两个项目,一个是我的主要Web项目,比如MyProject,另一个用于测试目的,比如说MyProject.Tests

Solution
    MyProject
    MyProject.Tests

我想让我的JavaScript无头测试运行到第二个。 在第一个项目中,所有javascript文件都在Scripts目录下,如下所示:

Scripts/
    Common.js
    Libs/
        jquery/
            jquery.js
        requirejs/
            require.js

在测试项目中,我将chutzpah.json文件放在root上。

MyProject.Tests
    chutzpah.json
    Tests/
        Specs/
            spec.js

该文件具有以下配置:

{
    "Framework": "jasmine",
    "TestHarnessReferenceMode": "AMD",
    "TestHarnessLocationMode": "SettingsFileAdjacent",
    "Tests": [ { "Path": "Tests/Specs" } ],
    "AMDBasePath": "../MyProject/Scripts",
    "CodeCoverageExcludes": ["*Common.js"],
    "References": [
        { "Path": "../MyProject/Scripts/Libs/requirejs/require.js" },
        { "Path": "../MyProject/Scripts/Common.js" }
    ]
}

但是当我尝试运行spec文件时出现错误。

规格文件:

define(["jquery"], function ($) {
    //code here. Doesn't matter, the error is because of the jquery module
});

错误,是:

Error: Error opening C:/Users/g.dyrrahitis/Documents/Visual Studio 2013/Projects/MySolution/MyProject.Tests/Scripts/Libs/jquery/jquery.js: The system cannot find the path specified.

问题是chutzpah试图在测试项目中找到我的jquery模块而不是它所在的主项目。

为什么我会遇到这种行为,我该如何解决这个问题呢?到目前为止,我一直在努力解决这个问题而没有运气。

注意

*名称MySolution, MyProject, MyProject.Tests用于清晰,而不是使用真实姓名。

1 个答案:

答案 0 :(得分:3)

我发现它,chutzpah文件没有针对测试工具目录的正确配置选项(如预期的那样)。 我需要TestHarnessDirectoryTestHarnessLocationMode选项来明确指示它查看我的主项目目录。

现在这是正确的:

{
    "TestHarnessDirectory": "../MyProject",
    "TestHarnessLocationMode": "Custom",
    "TestHarnessReferenceMode": "AMD",

    "Framework": "jasmine",
    "Tests": [ { "Path": "JavaScript/Specs" } ],
    "AMDBasePath": "../MyProject/Scripts",
    "CodeCoverageExcludes": [ "*Common.js" ],
    "References": [
        { "Path": "../MyProject/Scripts/Libs/requirejs/require.js" },
        { "Path": "../MyProject/Scripts/Common.js" }
    ]
}

只需要告诉chutzpah线束位置模式是自定义的,以便为它提供一个目录,这是我主项目的根目录。

请注意正确的配置路径,最终可能会像我一样努力寻找解决方案。并彻底阅读documentation(我没有做过)。