- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
昨天关门了。
Improve this question
我需要你帮我重新整理这个cypress代码
let stripe;
let bookService;
let images;
let moreDetails;
let checkoutDetails;
let wait;
before(() => {
cy.visit('/');
cy.fixture('stripe').then((data) => {
stripe = data;
});
cy.fixture('bookService').then((data) => {
bookService = data;
});
cy.fixture('images').then((data) => {
images = data;
});
cy.fixture('moreDetails').then((data) => {
moreDetails = data;
});
cy.fixture('wait').then((data) => {
wait = data;
});
});
我试过了
stripe = cy.fixture('stripe')
但它返回了一个对象{specWindow:...,链ID:...}
1条答案
按热度按时间ibrsph3r1#
可以在规范的末尾导入fixture,您可以使用
require()
以您建议的方式重构fixture,