gpt4 book ai didi

javascript - 在 jasmine 中循环 it() 描述未找到输出规范

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:32:25 24 4
gpt4 key购买 nike

我了解到 this way是在 describe() 中循环 it() 的最佳方法,但它因“未找到规范”而失败了,并且似乎就在 for 循环函数之前停止了,我想知道我哪里做错了吗?

谢谢!

describe('this is my looping test!', function() {
var input = [1,2,3];
var output = [10, 20, 30];

function test_my_times_ten(input, output) {
it('should multiply ' + input + ' by 10 to give ' + output, function() {
expect(input * 10).toEqual(output)
});
}

for(var x = 0; x < input.size; x++) {
test_my_times_ten(input[x], output[x]);
}
});

最佳答案

实际上有人做了这样非常聪明的事情,而且看起来很管用!

Looping on a protractor test with parameters

var testParams = testConfig.testArray;

for (var i = 0; i < testParams.length; i++) {

(function (testSpec) {
it('write your test here', function () {
//test code here
});
})(testParams[i]);

};

关于javascript - 在 jasmine 中循环 it() 描述未找到输出规范,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32184607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com