Skip to content

Commit

Permalink
Flytter useFeaturetoggles til v2 (#6934)
Browse files Browse the repository at this point in the history
* Flytter useFeaturetoggles til v2
Skriver litt om slik at den bruker react-query fremfor gammel rigg

* Bruker msw for å mocke feature toggle response for react-query

* Bruker hook for feature toggles alle steder
Bruker ikke gammel rigg for dette mer

* Håndterer ulike backends

* Bruker funksjon begge steder

* Kommentar for bruk av msw i testing

* Oppdatert kommentar

* Bruker context i stedet for hook for feature toggles

* Trenger ikke testhjelper mer

* Oppdaterer queryKey

* Endrer retur fra funksjon. Kan nå sjekke om featureToggles er definert
  • Loading branch information
hallvardastark authored Jan 2, 2025
1 parent 8b30473 commit 5b5bb62
Show file tree
Hide file tree
Showing 49 changed files with 164 additions and 324 deletions.
8 changes: 2 additions & 6 deletions packages/behandling-anke/src/components/AnkeProsess.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ import behandlingType from '@fpsak-frontend/kodeverk/src/behandlingType';
import personstatusType from '@fpsak-frontend/kodeverk/src/personstatusType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import { renderWithIntl } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { fagsakStatus } from '@k9-sak-web/backend/k9sak/kodeverk/behandling/FagsakStatus.js';
import { Behandling, Fagsak, Vilkar } from '@k9-sak-web/types';
import { screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { fagsakStatus } from '@k9-sak-web/backend/k9sak/kodeverk/behandling/FagsakStatus.js';
import AnkeProsess from './AnkeProsess';

describe('<AnkeProsess>', () => {
Expand Down Expand Up @@ -71,7 +69,6 @@ describe('<AnkeProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntl(
<AnkeProsess
data={{ aksjonspunkter, vilkar, ankeVurdering }}
Expand All @@ -94,7 +91,6 @@ describe('<AnkeProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntl(
<AnkeProsess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ import behandlingType from '@fpsak-frontend/kodeverk/src/behandlingType';
import fagsakStatus from '@fpsak-frontend/kodeverk/src/fagsakStatus';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { prosessStegCodes } from '@k9-sak-web/konstanter';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { Behandling, Fagsak } from '@k9-sak-web/types';
import { ProcessMenuStepType } from '@navikt/ft-plattform-komponenter';
import { renderHook } from '@testing-library/react';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { ProsessStegDef, ProsessStegPanelDef } from './ProsessStegDef';
import { ProsessStegPanelUtledet, ProsessStegUtledet } from './ProsessStegUtledet';
import prosessStegHooks from './prosessStegHooks';
Expand Down Expand Up @@ -90,7 +88,6 @@ describe('<prosessStegHooks>', () => {
}

it('skal utlede prosesstegpaneler, valgt panel og paneler formatert for meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const ekstraPanelData = {
soknad: 'test_soknad',
};
Expand Down Expand Up @@ -147,7 +144,6 @@ describe('<prosessStegHooks>', () => {
});

it('skal velge første prosess-steg', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const isReadOnlyCheck = () => false;
const toggleOverstyring = () => undefined;
const stegDef = new OpplysningspliktProsessStegPanelDef();
Expand Down Expand Up @@ -190,7 +186,6 @@ describe('<prosessStegHooks>', () => {
});

it('skal skjule prosess-steg når en velger steg som allerede vises', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const isReadOnlyCheck = () => false;
const toggleOverstyring = () => undefined;
const stegDef = new OpplysningspliktProsessStegPanelDef();
Expand Down Expand Up @@ -232,7 +227,6 @@ describe('<prosessStegHooks>', () => {
});

it('skal bekrefte aksjonspunkt', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const isReadOnlyCheck = () => false;
const toggleOverstyring = () => undefined;
const stegDef = new OpplysningspliktProsessStegPanelDef();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ import personstatusType from '@fpsak-frontend/kodeverk/src/personstatusType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { renderWithIntl } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { Behandling, Fagsak } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import FetchedData from '../types/fetchedDataTsType';
import FrisinnProsess from './FrisinnProsess';

Expand Down Expand Up @@ -93,7 +91,6 @@ describe('<FrisinnProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntl(
<FrisinnProsess
data={fetchedData as FetchedData}
Expand Down Expand Up @@ -121,7 +118,6 @@ describe('<FrisinnProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntl(
<FrisinnProsess
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react';

import aksjonspunktCodes from '@fpsak-frontend/kodeverk/src/aksjonspunktCodes';
import aksjonspunktStatus from '@fpsak-frontend/kodeverk/src/aksjonspunktStatus';
import behandlingStatus from '@fpsak-frontend/kodeverk/src/behandlingStatus';
Expand All @@ -9,10 +7,9 @@ import personstatusType from '@fpsak-frontend/kodeverk/src/personstatusType';
import { Behandling, Fagsak, KlageVurdering } from '@k9-sak-web/types';

import { renderWithIntl } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import KlageProsess from './KlageProsess';

describe('<KlageProsess>', () => {
Expand Down Expand Up @@ -79,7 +76,6 @@ describe('<KlageProsess>', () => {
} as KlageVurdering;

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntl(
<KlageProsess
data={{ aksjonspunkter, klageVurdering }}
Expand All @@ -105,7 +101,6 @@ describe('<KlageProsess>', () => {
});

it('skal vise alle aktuelle prosessSteg i meny (frisinn)', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntl(
<KlageProsess
data={{ aksjonspunkter, klageVurdering }}
Expand Down Expand Up @@ -133,7 +128,6 @@ describe('<KlageProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny (frisinn)', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntl(
<KlageProsess
Expand Down Expand Up @@ -165,7 +159,6 @@ describe('<KlageProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntl(
<KlageProsess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ import soknadType from '@fpsak-frontend/kodeverk/src/soknadType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { renderWithIntlAndReduxForm } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { Behandling, Fagsak, Soknad } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import FetchedData from '../types/fetchedDataTsType';
import OmsorgspengerProsess from './OmsorgspengerProsess';

Expand Down Expand Up @@ -105,7 +103,6 @@ describe('<OmsorgspengerProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntlAndReduxForm(
<OmsorgspengerProsess
data={fetchedData as FetchedData}
Expand Down Expand Up @@ -134,7 +131,6 @@ describe('<OmsorgspengerProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntlAndReduxForm(
<OmsorgspengerProsess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ import soknadType from '@fpsak-frontend/kodeverk/src/soknadType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { renderWithIntlAndReduxForm } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { Behandling, Fagsak, Soknad } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import messages from '../../i18n/nb_NO.json';
import {
PleiepengerSluttfaseBehandlingApiKeys,
Expand Down Expand Up @@ -175,7 +173,6 @@ describe('< PleiepengerSluttfaseProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
requestPleiepengerSluttfaseApi.mock(PleiepengerSluttfaseBehandlingApiKeys.SOKNADSFRIST_STATUS);
renderWithIntlAndReduxForm(
<PleiepengerSluttfaseProsess
Expand Down Expand Up @@ -212,7 +209,6 @@ describe('< PleiepengerSluttfaseProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntlAndReduxForm(
<PleiepengerSluttfaseProsess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ import soknadType from '@fpsak-frontend/kodeverk/src/soknadType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { renderWithIntlAndReduxForm } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { Behandling, Fagsak, Soknad } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { PleiepengerBehandlingApiKeys, requestPleiepengerApi } from '../data/pleiepengerBehandlingApi';
import FetchedData from '../types/FetchedData';
import PleiepengerProsess from './PleiepengerProsess';
Expand Down Expand Up @@ -172,7 +170,7 @@ describe('<PleiepengerProsess>', () => {

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestPleiepengerApi.mock(PleiepengerBehandlingApiKeys.SOKNADSFRIST_STATUS);
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);

renderWithIntlAndReduxForm(
<PleiepengerProsess
data={fetchedData as FetchedData}
Expand Down Expand Up @@ -208,7 +206,6 @@ describe('<PleiepengerProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntlAndReduxForm(
<PleiepengerProsess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ import foreldelseVurderingType from '@fpsak-frontend/kodeverk/src/foreldelseVurd
import personstatusType from '@fpsak-frontend/kodeverk/src/personstatusType';
import { intlMock } from '@fpsak-frontend/utils-test/intl-test-helper';
import { renderWithIntlAndReduxForm } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { behandlingType } from '@k9-sak-web/backend/k9sak/kodeverk/behandling/BehandlingType.js';
import { Behandling, Fagsak, FeilutbetalingPerioderWrapper } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { behandlingType } from '@k9-sak-web/backend/k9sak/kodeverk/behandling/BehandlingType.js';
import { requestTilbakekrevingApi, TilbakekrevingBehandlingApiKeys } from '../data/tilbakekrevingBehandlingApi';
import vedtakResultatType from '../kodeverk/vedtakResultatType';
import TilbakekrevingProsess from './TilbakekrevingProsess';
Expand Down Expand Up @@ -115,7 +113,6 @@ describe('<TilbakekrevingProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
requestTilbakekrevingApi.mock(TilbakekrevingBehandlingApiKeys.VILKARVURDERINGSPERIODER, {
perioder: [{ vilkarResultat: undefined, begrunnelse: '', vilkarResultatInfo: undefined, ytelser: [] }],
});
Expand Down Expand Up @@ -150,7 +147,6 @@ describe('<TilbakekrevingProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
requestTilbakekrevingApi.mock(TilbakekrevingBehandlingApiKeys.VILKARVURDERINGSPERIODER, {
perioder: [{ vilkarResultat: undefined, begrunnelse: '', vilkarResultatInfo: undefined, ytelser: [] }],
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ import personstatusType from '@fpsak-frontend/kodeverk/src/personstatusType';
import vilkarType from '@fpsak-frontend/kodeverk/src/vilkarType';
import vilkarUtfallType from '@fpsak-frontend/kodeverk/src/vilkarUtfallType';
import { renderWithIntlAndReduxForm } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { Behandling, Fagsak } from '@k9-sak-web/types';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { fagsakYtelsesType } from '@k9-sak-web/backend/k9sak/kodeverk/FagsakYtelsesType.js';
import { requestUnntakApi, UnntakBehandlingApiKeys } from '../data/unntakBehandlingApi';
import FetchedData from '../types/fetchedDataTsType';
import UnntakProsess from './UnntakProsess';
Expand Down Expand Up @@ -126,7 +124,6 @@ describe('<UnntakProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
requestUnntakApi.mock(UnntakBehandlingApiKeys.MEDLEMSKAP, []);
renderWithIntlAndReduxForm(
<UnntakProsess
Expand Down Expand Up @@ -156,8 +153,6 @@ describe('<UnntakProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);

const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntlAndReduxForm(
<UnntakProsess
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { renderWithIntl } from '@fpsak-frontend/utils-test/test-utils';
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { act, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import FetchedData from '../../types/fetchedDataTsType';
import UtvidetRettProsess from '../UtvidetRettProsess';
import utvidetRettTestData from './utvidetRettTestData';
Expand All @@ -19,7 +17,6 @@ describe('<UtvidetRettProsess>', () => {
};

it('skal vise alle aktuelle prosessSteg i meny', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
renderWithIntl(
<UtvidetRettProsess
data={fetchedData as FetchedData}
Expand Down Expand Up @@ -47,7 +44,6 @@ describe('<UtvidetRettProsess>', () => {
});

it('skal sette nytt valgt prosessSteg ved trykk i meny', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const oppdaterProsessStegOgFaktaPanelIUrl = vi.fn();
renderWithIntl(
<UtvidetRettProsess
Expand Down
2 changes: 0 additions & 2 deletions packages/fakta-medlemskap/src/MedlemskapFaktaIndex.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { composeStories, StoryFn } from '@storybook/react';
import { screen, userEvent } from '@storybook/test';
import { act, render } from '@testing-library/react';
Expand All @@ -10,7 +9,6 @@ describe('MedlemskapFaktaIndex', () => {
[key: string]: StoryFn<Partial<typeof MedlemskapFaktaIndex>>;
};
it('skal formatere data ved innsending', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
const onClickSpy = vi.fn();
const props = { submitCallback: onClickSpy };
render(<VisAksjonspunktForAlleAndreMedlemskapsaksjonspunkter {...props} />);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { K9sakApiKeys, requestApi } from '@k9-sak-web/sak-app/src/data/k9sakApi';
import { composeStories, StoryFn } from '@storybook/react';
import { userEvent } from '@storybook/test';
import { act, render, screen } from '@testing-library/react';
Expand All @@ -15,7 +14,6 @@ describe('<MedlemskapInfoPanel>', () => {
};

it('skal vise editeringsmuligheter når det finnes aksjonspunkter', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
render(<VisAksjonspunktForAvklaringOmBrukerErBosatt />);
expect(screen.getByText('Vurder om søker er bosatt i Norge')).toBeInTheDocument();
expect(screen.getByText('Opplysninger oppgitt i søknaden')).toBeInTheDocument();
Expand All @@ -28,7 +26,6 @@ describe('<MedlemskapInfoPanel>', () => {
});

it('skal kunne avklare perioder når en har dette aksjonspunktet', async () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
render(<VisAksjonspunktForAlleAndreMedlemskapsaksjonspunkter />);
expect(screen.getByText('Vurder om søker har gyldig medlemskap i perioden')).toBeInTheDocument();
expect(screen.getByText('Perioder med medlemskap')).toBeInTheDocument();
Expand All @@ -39,7 +36,6 @@ describe('<MedlemskapInfoPanel>', () => {
});

it('skal vise informasjon uten editeringsmuligheter når det ikke finnes aksjonspunkter', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
render(<VisPanelUtenAksjonspunkt />);
expect(screen.getByText('Opplysninger oppgitt i søknaden')).toBeInTheDocument();
expect(screen.getByText('Perioder med medlemskap')).toBeInTheDocument();
Expand All @@ -48,7 +44,6 @@ describe('<MedlemskapInfoPanel>', () => {
});

it('skal vise informasjon om opphold og bosatt informasjon', () => {
requestApi.mock(K9sakApiKeys.FEATURE_TOGGLE, []);
render(<VisAksjonspunktForAlleAndreMedlemskapsaksjonspunkter />);
expect(screen.getByText('Opphold utenfor Norge')).toBeInTheDocument();
expect(screen.getByText('Sverige')).toBeInTheDocument();
Expand Down
Loading

0 comments on commit 5b5bb62

Please sign in to comment.