我想我没有抓住重点,fixture不能在测试之外使用,但是我想使用'it'函数来测试JSON文件中的每个fixture。
我不确定我现在是否正确理解了fixture或者正确使用了它们。下面是我的Cypress TypeScript代码:
let row: string;
let stream: string;
cy.fixture('AllNotificationStates').then((notifications) => {
for (let notification in notifications) {
row = notifications[notification].rowId;
stream = notifications[notification].streamId;
it(`${row}`, () => {
cy.intercept('GET', '**/api/', (req) => {
req.reply((req) => {
req.statusCode = 200;
req.body = [notifications[notification]];
});
});
cy.visit('/notification/dashboard');
co.setTestId(row);
co.assertRowIDandStreamID(row, stream);
});
}
});
2条答案
按热度按时间jogvjijk1#
您应该使用cypress-each来执行所有测试,无论是否有一个或多个失败。根据所需的时间,您可能要将每个测试分解到另一个档案中。
edqdpe6u2#
如果在
it
块之前使用cy.fixture
,则不能使用cy.fixture
,而是可以直接导入,然后像这样使用。