@@ -26,7 +26,10 @@ test("it should be possible to enable abbreviations for colors & x field (column
26
26
expect ( await checkbox . isDisabled ( ) ) . toEqual ( true ) ;
27
27
28
28
await (
29
- await selectors . panels . drawer ( ) . within ( ) . findByText ( "Jahr der Vergütung" )
29
+ await selectors . panels
30
+ . drawer ( )
31
+ . within ( )
32
+ . getByLabelText ( "Jahr der Vergütung" )
30
33
) . click ( ) ;
31
34
32
35
await actions . mui . selectOption ( "Kanton" ) ;
@@ -43,7 +46,9 @@ test("it should be possible to enable abbreviations for colors & x field (column
43
46
const xAxis = await selectors . chart . axisWidthBand ( ) ;
44
47
const ticks = ( await xAxis . textContent ( ) ) as string ;
45
48
46
- await ( await selectors . panels . drawer ( ) . within ( ) . findByText ( "Kanton" ) ) . click ( ) ;
49
+ await (
50
+ await selectors . panels . drawer ( ) . within ( ) . getByLabelText ( "Kanton" )
51
+ ) . click ( ) ;
47
52
48
53
await actions . mui . selectOption ( "Jahr der Vergütung" ) ;
49
54
@@ -54,7 +59,9 @@ test("it should be possible to enable abbreviations for colors & x field (column
54
59
await actions . editor . selectActiveField ( "Segmentation" ) ;
55
60
await selectors . edition . drawerLoaded ( ) ;
56
61
57
- await ( await selectors . panels . drawer ( ) . within ( ) . findByText ( "None" ) ) . click ( ) ;
62
+ await (
63
+ await selectors . panels . drawer ( ) . within ( ) . getByLabelText ( "None" )
64
+ ) . click ( ) ;
58
65
59
66
await actions . mui . selectOption ( "Kanton" ) ;
60
67
@@ -91,7 +98,9 @@ test("hierarchies: it should be possible to enable abbreviations for colors", as
91
98
await selectors . edition . drawerLoaded ( ) ;
92
99
await actions . editor . selectActiveField ( "Segmentation" ) ;
93
100
94
- await ( await selectors . panels . drawer ( ) . within ( ) . findByText ( "None" ) ) . click ( ) ;
101
+ await (
102
+ await selectors . panels . drawer ( ) . within ( ) . getByLabelText ( "None" )
103
+ ) . click ( ) ;
95
104
96
105
await actions . mui . selectOption ( "Greenhouse gas" ) ;
97
106
await selectors . edition . drawerLoaded ( ) ;
@@ -120,37 +129,37 @@ test("hierarchies: it should be possible to enable abbreviations for colors", as
120
129
] ) ;
121
130
} ) ;
122
131
123
- test ( "localized abbreviations" , async ( {
124
- actions,
125
- selectors,
126
- replayFromHAR,
127
- } ) => {
128
- await replayFromHAR ( ) ;
132
+ // test("localized abbreviations", async ({
133
+ // actions,
134
+ // selectors,
135
+ // replayFromHAR,
136
+ // }) => {
137
+ // await replayFromHAR();
129
138
130
- await actions . chart . createFrom ( {
131
- iri : "https://environment.ld.admin.ch/foen/gefahren-waldbrand-praeventionsmassnahmen-kantone/1" ,
132
- dataSource : "Prod" ,
133
- createURLParams : harReplayGraphqlEndpointQueryParam ,
134
- } ) ;
139
+ // await actions.chart.createFrom({
140
+ // iri: "https://environment.ld.admin.ch/foen/gefahren-waldbrand-praeventionsmassnahmen-kantone/1",
141
+ // dataSource: "Prod",
142
+ // createURLParams: harReplayGraphqlEndpointQueryParam,
143
+ // });
135
144
136
- await selectors . edition . drawerLoaded ( ) ;
137
- await actions . editor . changeRegularChartType ( "Map" ) ;
138
- await actions . editor . selectActiveField ( "Warning region" ) ;
145
+ // await selectors.edition.drawerLoaded();
146
+ // await actions.editor.changeRegularChartType("Map");
147
+ // await actions.editor.selectActiveField("Warning region");
139
148
140
- await selectors . edition . drawerLoaded ( ) ;
141
- const checkbox = await selectors . edition . useAbbreviationsCheckbox ( ) ;
149
+ // await selectors.edition.drawerLoaded();
150
+ // const checkbox = await selectors.edition.useAbbreviationsCheckbox();
142
151
143
- await checkbox . click ( ) ;
152
+ // await checkbox.click();
144
153
145
- await selectors . chart . loaded ( ) ;
146
- await selectors . edition . filtersLoaded ( ) ;
147
- await selectors . chart . colorLegend ( undefined , { timeout : 3_000 } ) ;
154
+ // await selectors.chart.loaded();
155
+ // await selectors.edition.filtersLoaded();
156
+ // await selectors.chart.colorLegend(undefined, { timeout: 3_000 });
148
157
149
- await sleep ( 3_000 ) ;
158
+ // await sleep(3_000);
150
159
151
- const legendItems = await (
152
- await selectors . chart . colorLegendItems ( )
153
- ) . allInnerTexts ( ) ;
160
+ // const legendItems = await (
161
+ // await selectors.chart.colorLegendItems()
162
+ // ).allInnerTexts();
154
163
155
- expect ( legendItems . slice ( 0 , 2 ) ) . toEqual ( [ "No measures" , "Warning" ] ) ;
156
- } ) ;
164
+ // expect(legendItems.slice(0, 2)).toEqual(["No measures", "Warning"]);
165
+ // });
0 commit comments