gentle-accountant-4760
09/15/2022, 2:23 PMts
beforeEach(() => {
function setSipFeatureToggle(): void {
localStorage.setItem('featureToggleOverrides', JSON.stringify({
'feature-test-provider': true,
}));
}
});
however when I run my test the first time when doing cypress open, it works but then when I restart the test again, it doesn't apply the beforeEach anymore, what is the reason of that?