Skip to content

Commit

Permalink
loggin afterAll
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattk70 committed Nov 20, 2024
1 parent a433542 commit b9e53c0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/record.creation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ test.beforeAll(async () => {
});
})

// test.afterAll(async () => {
// //await page.pause()
// await electronApp.close()
// })
test.afterAll(async () => {
//await page.pause()
console.log('in after all')
await electronApp.close();
console.log('after all: app closed')
})

test.describe.configure({ mode: 'parallel', retries: 2, timeout: 20_000 });

Expand Down

0 comments on commit b9e53c0

Please sign in to comment.