#1976 Implementar Puppeteer async browser.close
gitea/salix/puppeteer There was a failure building this commit
Details
gitea/salix/puppeteer There was a failure building this commit
Details
This commit is contained in:
parent
54f7d21e24
commit
5efe47bfe3
|
@ -13,7 +13,7 @@ describe('Client Add address path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should click on the add new address button to access to the new address form`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client add address notes path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should click on the edit icon of the default address`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client Edit web access path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should uncheck the Enable web access checkbox and update the name`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client Add notes path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should click on the add note button`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client Add credit path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should click on the add credit button`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client Add greuge path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it(`should click on the add greuge button`, async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client mandate path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it('should confirm the client has a mandate of the CORE type', async() => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client lock verified data path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
describe('as salesPerson', () => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client log path', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it('should update the clients name', async() => {
|
||||
|
|
|
@ -12,7 +12,7 @@ describe('Client balance path', () => {
|
|||
}, 30000);
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
it('should now edit the local user config data', async() => {
|
||||
|
|
|
@ -10,7 +10,7 @@ describe('User config', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
describe('as salesPerson', () => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client web Payment', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
describe('as employee', () => {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('Client DMS', () => {
|
|||
});
|
||||
|
||||
afterAll(async() => {
|
||||
browser.close();
|
||||
await browser.close();
|
||||
});
|
||||
|
||||
describe('as salesPerson', () => {
|
||||
|
|
Loading…
Reference in New Issue