E2E fixes: client balance, ticket index
gitea/salix/pipeline/head Something is wrong with the build of this commit
Details
gitea/salix/pipeline/head Something is wrong with the build of this commit
Details
This commit is contained in:
parent
1502592818
commit
98ed5e93d5
|
@ -372,7 +372,7 @@ export default {
|
||||||
payoutButton: 'vn-ticket-index vn-button[icon="icon-recovery"]',
|
payoutButton: 'vn-ticket-index vn-button[icon="icon-recovery"]',
|
||||||
payoutCompany: '.vn-dialog vn-autocomplete[ng-model="$ctrl.receipt.companyFk"]',
|
payoutCompany: '.vn-dialog vn-autocomplete[ng-model="$ctrl.receipt.companyFk"]',
|
||||||
payoutBank: '.vn-dialog vn-autocomplete[ng-model="$ctrl.receipt.bankFk"]',
|
payoutBank: '.vn-dialog vn-autocomplete[ng-model="$ctrl.receipt.bankFk"]',
|
||||||
submitPayout: '.vn-dialog vn-button[label="Save"]',
|
submitPayout: '.vn-dialog button[response="accept"]',
|
||||||
searchWeeklyResult: 'vn-ticket-weekly-index vn-table vn-tbody > vn-tr',
|
searchWeeklyResult: 'vn-ticket-weekly-index vn-table vn-tbody > vn-tr',
|
||||||
searchResultDate: 'vn-ticket-summary [label=Landed] span',
|
searchResultDate: 'vn-ticket-summary [label=Landed] span',
|
||||||
topbarSearch: 'vn-searchbar',
|
topbarSearch: 'vn-searchbar',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import selectors from '../../helpers/selectors';
|
import selectors from '../../helpers/selectors';
|
||||||
import getBrowser from '../../helpers/puppeteer';
|
import getBrowser from '../../helpers/puppeteer';
|
||||||
|
|
||||||
describe('Client balance path', () => {
|
fdescribe('Client balance path', () => {
|
||||||
let browser;
|
let browser;
|
||||||
let page;
|
let page;
|
||||||
beforeAll(async() => {
|
beforeAll(async() => {
|
||||||
|
@ -108,7 +108,7 @@ describe('Client balance path', () => {
|
||||||
|
|
||||||
it('should now search for the user Petter Parker', async() => {
|
it('should now search for the user Petter Parker', async() => {
|
||||||
await page.accessToSearchResult('Petter Parker');
|
await page.accessToSearchResult('Petter Parker');
|
||||||
await page.waitForState('client.card.balance.index');
|
await page.accessToSection('client.card.balance.index');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not be able to click the new payment button as it isnt present', async() => {
|
it('should not be able to click the new payment button as it isnt present', async() => {
|
||||||
|
|
|
@ -16,9 +16,7 @@ describe('Ticket index payout path', () => {
|
||||||
|
|
||||||
it('should navigate to the ticket index', async() => {
|
it('should navigate to the ticket index', async() => {
|
||||||
await page.loginAndModule('administrative', 'ticket');
|
await page.loginAndModule('administrative', 'ticket');
|
||||||
let url = await page.expectURL('#!/ticket/index');
|
await page.waitForState('ticket.index');
|
||||||
|
|
||||||
expect(url).toBe(true);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should check three tickets 2 of a clinet and 1 of another', async() => {
|
it('should check three tickets 2 of a clinet and 1 of another', async() => {
|
||||||
|
|
Loading…
Reference in New Issue