electron now closes after each e2e path completed.
This commit is contained in:
parent
20229cf3e1
commit
9e4d03ecf3
|
@ -230,4 +230,12 @@ describe('create client path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -279,4 +279,12 @@ describe('Edit basicData path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -563,4 +563,12 @@ describe('Edit fiscalData path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -267,4 +267,12 @@ describe('Edit pay method path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -285,4 +285,12 @@ describe('Add address path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -96,4 +96,12 @@ describe('Add address notes path', () => {
|
|||
// })
|
||||
// .catch(catchErrors(done));
|
||||
// });
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -131,4 +131,12 @@ describe('Edit web access path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -107,4 +107,12 @@ describe('Add notes path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -108,4 +108,12 @@ describe('Add credit path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -165,4 +165,12 @@ describe('Add greuge path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -83,4 +83,12 @@ describe('mandate path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -98,4 +98,12 @@ describe('create item barcodes path', () => {
|
|||
})
|
||||
.catch(catchErrors(done));
|
||||
});
|
||||
|
||||
describe('closing browser', () => {
|
||||
it('should close the browser', done => {
|
||||
nightmare
|
||||
.end()
|
||||
.then(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue