fixed e2e

This commit is contained in:
gerard 2018-07-09 09:46:49 +02:00
parent 3f1d2494f2
commit 2442a2cb76
1 changed files with 4 additions and 4 deletions

View File

@ -64,11 +64,11 @@ describe('Ticket', () => {
.wait(selectors.ticketSales.secondSaleText)
.getInnerText(selectors.ticketSales.secondSaleText)
.then(value => {
expect(value).toContain('Yellow');
expect(value).toContain('2');
expect(value).toContain('€23.50');
expect(value).toContain('Red');
expect(value).toContain('10');
expect(value).toContain('€4.50');
expect(value).toContain('0 %');
expect(value).toContain('€47.00');
expect(value).toContain('€45.00');
});
});
});