Move afterAll from sign-in-and-out tests earlier for understandability

This commit is contained in:
BryceLTaylor 2021-11-08 16:33:54 -05:00
parent cc69ff87a0
commit bbfbf8d731

View file

@ -30,6 +30,10 @@ describe('www-integration sign-in-and-out', () => {
driver = await buildDriver('www-integration sign-in-out');
});
afterAll(async () => {
await driver.quit();
});
describe('sign in', () => {
afterEach(async () => {
await driver.get(wwwURL);
@ -101,8 +105,6 @@ describe('www-integration sign-in-and-out', () => {
});
afterAll(async () => {
await driver.quit();
});
});