commercetools-8.x-1.2-alpha1/tests/src/Nightwatch/Lib/checkProductList.js
tests/src/Nightwatch/Lib/checkProductList.js
const checkProductCard = require('./checkProductCard');
async function checkProductList(browser, items, settings) {
// Check only first/last items for performance reason.
const [first] = items;
await checkProductCard(browser, first, 0, settings);
const lastIndex = items.length - 1;
await checkProductCard(browser, items[lastIndex], lastIndex, settings);
}
module.exports = checkProductList;
