#1976 Implementar Puppeteer async browser.close
gitea/salix/puppeteer There was a failure building this commit Details

This commit is contained in:
Carlos Jimenez Ruiz 2020-01-14 09:40:50 +01:00
parent 54f7d21e24
commit 5efe47bfe3
13 changed files with 13 additions and 13 deletions

View File

@ -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() => {

View File

@ -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() => {

View File

@ -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() => {

View File

@ -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() => {

View File

@ -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() => {

View File

@ -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() => {

View File

@ -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() => {

View File

@ -13,7 +13,7 @@ describe('Client lock verified data path', () => {
});
afterAll(async() => {
browser.close();
await browser.close();
});
describe('as salesPerson', () => {

View File

@ -13,7 +13,7 @@ describe('Client log path', () => {
});
afterAll(async() => {
browser.close();
await browser.close();
});
it('should update the clients name', async() => {

View File

@ -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() => {

View File

@ -10,7 +10,7 @@ describe('User config', () => {
});
afterAll(async() => {
browser.close();
await browser.close();
});
describe('as salesPerson', () => {

View File

@ -13,7 +13,7 @@ describe('Client web Payment', () => {
});
afterAll(async() => {
browser.close();
await browser.close();
});
describe('as employee', () => {

View File

@ -13,7 +13,7 @@ describe('Client DMS', () => {
});
afterAll(async() => {
browser.close();
await browser.close();
});
describe('as salesPerson', () => {