gpt4 book ai didi

javascript - 循环遍历在 it block 中创建的数组

转载 作者:行者123 更新时间:2023-12-01 03:37:08 25 4
gpt4 key购买 nike

我正在编写一个代码,其中我的 it block 生成一个数组,我喜欢循环遍历它并在同一个描述 block 中进行一些测试。我尝试将该数组写入文件并访问它,但这些测试在写入之前先执行。我无法访问摩卡测试之外的a,但我想知道是否有办法做到这一点?

it("test",function(done){
a=[1,2,3]
})

a.forEach(function(i){
it("test1",function(done){
console.log(i)
})
})

最佳答案

这行不通?

it("test",function(done){
a=[1,2,3]
a.forEach(function(i){
it("test1",function(done){
console.log(i)
})
})

关于javascript - 循环遍历在 it block 中创建的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44182939/

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