0
私はgrunt-loop-mochaノードモジュールを使用しています。私はイサキテストを実行すると、私はエラーの下に取得する:ここでgrunt-loop-mocha:警告:タスク "loopmocha"が見つかりません。使用するには--forceを使用してください
Warning: Task "loopmocha" not found. Use --force to continue.
Aborted due to warnings.
は私のコードです:
module.exports = function(grunt) {
require("grunt-loop-mocha")
// Project configuration.
grunt.initConfig({
loopmocha: {
src: ["./tests/***-specs.js"],
options: {
mocha: {
parallel: true,
globals: ['should'],
timeout: 3000,
ui: 'bdd',
reporter: "xunit-file"
},
loop: {
reportLocation: "test/report"
},
env1: {
stringVal: "fromfile"
},
env2: {
jsonVal: {
foo: {
bar: {
stringVal: "baz"
}
}
}
},
iterations: [
{
"description": "first",
"env1": {
"someKey": "some value"
}
},
{
"description": "second",
"env2": {
"someOtherKey": "some other value"
}
},
{
"description": "third",
"mocha": {
"timeout": 4000
}
},
{
"description": "fifth",
"env1": {
"anotherKey": "BLERG"
},
"env2": {
"yetAnotherKey": 123
}
}
]
}
}
});
grunt.registerTask('test', 'loopmocha');
};
私も、私は作男・ループ・モカNPMをインストールしました。
不明な点がわかりません。基本的には、さまざまなブラウザでテストを実行するためにgrunt-loop-mochaを使用しようとしています。