I\'m using Puppeteer and Jest to run some front end tests.
My tests look as follows:
describe("Profile Ta
Make sure to invoke done(); on callbacks or it simply won't pass the test.
done();
beforeAll((done /* Call it or remove it */ ) => { done(); // Calling it });
It applies to all other functions that have a done() callback.