jest-puppeteer Questions
2
Solved
I have the following testcase:
it('User can logout', async () => {
await helper.navClick('.header-user-action__logout');
const url = page.url();
console.log(url)
await expect(url).toContain(...
Finite asked 13/7, 2021 at 14:28
1
What i want
My code widely depends on global window object (and it's methods) which isn't fully implemented by jsdom, but available in real browser environment. So i want to run unit tests inside ...
Blatman asked 19/10, 2018 at 12:34
1
I just entered the world of testing with puppeteer and jest, and I was wondering what the best practice was in terms of folder architecture and logic.
I've never done testing before and I think I'...
Seely asked 27/2, 2020 at 22:1
1
© 2022 - 2025 — McMap. All rights reserved.