File tree 3 files changed +3
-7
lines changed
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ import type { FeatureToggles } from '../FeatureToggles.js';
3
3
export const devFeatureToggles = {
4
4
BRUK_V2_MELDINGER : false ,
5
5
KLAGE_KABAL : true ,
6
- VARSELTEKST : true ,
7
6
DOKUMENTDATA : true ,
8
7
UNNTAKSBEHANDLING : true ,
9
8
TYPE_MEDISINSKE_OPPLYSNINGER_BREV : true ,
10
9
LOS_MARKER_BEHANDLING : true ,
11
10
LOS_MARKER_BEHANDLING_SUBMIT : true ,
12
- FRITEKST_REDIGERING : true ,
13
11
FIX_SOKNADSFRIST_KALENDER_OG_READONLY : true ,
14
12
NYE_NOKKELTALL : true ,
15
13
SKILL_UT_PRIVATPERSON : true ,
Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ import type { FeatureToggles } from '../FeatureToggles.js';
3
3
export const qFeatureToggles = {
4
4
BRUK_V2_MELDINGER : false ,
5
5
KLAGE_KABAL : true ,
6
- VARSELTEKST : true ,
7
6
DOKUMENTDATA : true ,
8
7
UNNTAKSBEHANDLING : true ,
9
8
TYPE_MEDISINSKE_OPPLYSNINGER_BREV : true ,
10
9
LOS_MARKER_BEHANDLING : true ,
11
10
LOS_MARKER_BEHANDLING_SUBMIT : true ,
12
- FRITEKST_REDIGERING : true ,
13
11
FIX_SOKNADSFRIST_KALENDER_OG_READONLY : true ,
14
12
NYE_NOKKELTALL : true ,
15
13
SKILL_UT_PRIVATPERSON : true ,
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ export const Default: StoryObj<typeof VisittkortPanel> = {
55
55
personopplysninger : personopplysningerSoker ,
56
56
} ,
57
57
play : async ( { canvas } ) => {
58
- await expect ( canvas . getByText ( personopplysningerSoker . navn , { exact : false } ) ) . toBeInTheDocument ( ) ;
58
+ await expect ( canvas . getByText ( personopplysningerSoker . navn ) ) . toBeInTheDocument ( ) ;
59
59
await expect ( canvas . getByText ( '987738 95' ) ) . toBeInTheDocument ( ) ;
60
- await expect ( canvas . getByText ( ` ${ fagsakPerson . navn } (80 år)` , { exact : false } ) ) . toBeInTheDocument ( ) ;
60
+ await expect ( canvas . getByText ( fagsakPerson . navn ) ) . toBeInTheDocument ( ) ;
61
61
} ,
62
62
} ;
63
63
@@ -67,7 +67,7 @@ export const ManglerPersonOpplysninger: StoryObj<typeof VisittkortPanel> = {
67
67
personopplysninger : undefined ,
68
68
} ,
69
69
play : async ( { canvas } ) => {
70
- await expect ( canvas . getByText ( fagsakPerson . navn , { exact : false } ) ) . toBeInTheDocument ( ) ;
70
+ await expect ( canvas . getByText ( fagsakPerson . navn ) ) . toBeInTheDocument ( ) ;
71
71
await expect ( canvas . getByText ( '123456 7' ) ) . toBeInTheDocument ( ) ;
72
72
} ,
73
73
} ;
You can’t perform that action at this time.
0 commit comments