I am wondering if it is possible in Jest to skip one or more tests in a suite based on the value of a variable used in the beforeEach function.
My code:
let errLoadingData = false;
beforeEach(async () => {
await page.goto('myurl.com');
try {
await waitForSelector('error-banner');
} catch (error) {
errLoadingData = true;
throw new Error(
'Myurl page displaying error to user.',
);
}
});
test('Visit myurl page', async () => {
// wait for and click elements on myurl page
.
.
.
}
I would like to not run Visit myurl page
if errLoadingData
= true.
Thanks in advance!