@@ -129,15 +129,6 @@ describe('validateURI', () => {
129
129
. to . have . errorAtIndex ( 0 )
130
130
. withMessage ( `Expected URI '/dashboard', but got '/profile'.` ) ;
131
131
} ) ;
132
-
133
- it ( 'includes values' , ( ) => {
134
- expect ( result )
135
- . to . have . errorAtIndex ( 0 )
136
- . withValues ( {
137
- expected : '/dashboard' ,
138
- actual : '/profile'
139
- } ) ;
140
- } ) ;
141
132
} ) ;
142
133
} ) ;
143
134
@@ -172,15 +163,6 @@ describe('validateURI', () => {
172
163
`Expected URI '/account?id=123', but got '/account'.`
173
164
) ;
174
165
} ) ;
175
-
176
- it ( 'includes values' , ( ) => {
177
- expect ( result )
178
- . to . have . errorAtIndex ( 0 )
179
- . withValues ( {
180
- expected : '/account?id=123' ,
181
- actual : '/account'
182
- } ) ;
183
- } ) ;
184
166
} ) ;
185
167
} ) ;
186
168
@@ -214,15 +196,6 @@ describe('validateURI', () => {
214
196
`Expected URI '/account?name=user', but got '/account?nAmE=usEr'.`
215
197
) ;
216
198
} ) ;
217
-
218
- it ( 'includes values' , ( ) => {
219
- expect ( result )
220
- . to . have . errorAtIndex ( 0 )
221
- . withValues ( {
222
- expected : '/account?name=user' ,
223
- actual : '/account?nAmE=usEr'
224
- } ) ;
225
- } ) ;
226
199
} ) ;
227
200
} ) ;
228
201
@@ -256,15 +229,6 @@ describe('validateURI', () => {
256
229
`Expected URI '/zoo?type=cats&type=dogs', but got '/zoo?type=dogs&type=cats'.`
257
230
) ;
258
231
} ) ;
259
-
260
- it ( 'includes values' , ( ) => {
261
- expect ( result )
262
- . to . have . errorAtIndex ( 0 )
263
- . withValues ( {
264
- expected : '/zoo?type=cats&type=dogs' ,
265
- actual : '/zoo?type=dogs&type=cats'
266
- } ) ;
267
- } ) ;
268
232
} ) ;
269
233
} ) ;
270
234
} ) ;
0 commit comments