Skip to content

Commit

Permalink
EMA-145 - Security findings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanyi committed Mar 19, 2024
1 parent 973f298 commit a350908
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dev/testv2/products/list.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,13 +357,17 @@ describe('Products endpoint', function () {
try {
await this.reindex();
} catch (e) {
console.log(e);
console.log(e.stack);
}
});

after(async function () {
await setPriceForEntityId(entityIdUsed, originalPrice, this.db, this.magentoEdition);
await this.reindex();
try {
await this.reindex();
} catch (e) {
console.log(e.stack);
}
});
it('returns configurable product min price if price or final price is 0', async function () {
const { products } = await this.magentoApi.execute('products', 'get', requestParams);
Expand Down

0 comments on commit a350908

Please sign in to comment.