you can simply skip this test by
test('Visit myurl page', async () => { if (errLoadingData) { return; } //remaining code }
else use the test.skip() or describe.skip() refer the similar questions
test.skip()
describe.skip()
refer the similar questions
Skip one test in test file Jest
Run a test in Jest only if certain condition are met