6

以下代码片段只有 50% 的分支覆盖率(请参阅下面的覆盖率报告)我不知道如何改进这一点,因为没有if语句。

我认为伊斯坦布尔必须进行某种我不完全理解的测量,任何指针表示赞赏。

angular
.module("konakFront", [
    "ngRoute"
])
.config(function ($routeProvider) {
    "use strict";
    $routeProvider
        .when("/", {
            templateUrl: "views/main.html",
            controller: "MainCtrl"
        })
        .otherwise({
            redirectTo: "/"
        });
});

伊斯坦布尔报道

4

1 回答 1

0

这与文件的意外双重检测有关。更多信息可以在这里找到:

https://github.com/gotwarlost/istanbul/issues/123

于 2014-08-01T07:50:57.717 回答