Allow launch wizard for Azure images

This commit is contained in:
Ondrej Ezr 2023-03-14 17:48:20 +01:00 committed by Sanne Raymaekers
parent e04be4d6d6
commit 78bc71fe6a
4 changed files with 91 additions and 8 deletions

View file

@ -1,6 +1,11 @@
import 'whatwg-fetch';
import { server } from './src/test/mocks/server';
jest.mock('@unleash/proxy-client-react', () => ({
useUnleashContext: () => jest.fn(),
useFlag: jest.fn(() => true),
}));
beforeAll(() => server.listen());
afterEach(() => server.resetHandlers());
afterAll(() => server.close());