Updated e2e
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2023-02-17 11:21:31 +01:00
parent 527caf9ca0
commit 31da648842
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ describe('Ticket Summary path', () => {
let result = await page
.waitToGetProperty(selectors.ticketSummary.firstSaleItemId, 'innerText');
expect(result).toContain('000002');
expect(result).toContain('2');
});
it(`should click on the first sale ID to make the item descriptor visible`, async() => {

View File

@ -45,7 +45,7 @@ describe('Claim summary path', () => {
it('should display the claimed line(s)', async() => {
const result = await page.waitToGetProperty(selectors.claimSummary.firstSaleItemId, 'innerText');
expect(result).toContain('000002');
expect(result).toContain('2');
});
it(`should click on the first sale ID making the item descriptor visible`, async() => {