@@ -172,44 +172,44 @@ fn test() {
172
172
173
173
let fail_jest = vec ! [
174
174
"for (const [input, expected] of data) {
175
- it(\\ `results in $\\ {expected}\\ `, () => {
175
+ it(`results in ${expected}`, () => {
176
176
expect(fn(input)).toBe(expected)
177
177
});
178
178
}" ,
179
179
"for (const [input, expected] of data) {
180
- describe(\\ `when the input is $\\ {input}\\ `, () => {
181
- it(\\ `results in $\\ {expected}\\ `, () => {
180
+ describe(`when the input is ${input}`, () => {
181
+ it(`results in ${expected}`, () => {
182
182
expect(fn(input)).toBe(expected)
183
183
});
184
184
});
185
185
}" ,
186
186
"for (const [input, expected] of data) {
187
- describe(\\ `when the input is $\\ {input}\\ `, () => {
188
- it(\\ `results in $\\ {expected}\\ `, () => {
187
+ describe(`when the input is ${input}`, () => {
188
+ it(`results in ${expected}`, () => {
189
189
expect(fn(input)).toBe(expected)
190
190
});
191
191
});
192
192
}
193
193
for (const [input, expected] of data) {
194
- it.skip(\\ `results in $\\ {expected}\\ `, () => {
194
+ it.skip(`results in ${expected}`, () => {
195
195
expect(fn(input)).toBe(expected)
196
196
});
197
197
}" ,
198
198
"for (const [input, expected] of data) {
199
- it.skip(\\ `results in $\\ {expected}\\ `, () => {
199
+ it.skip(`results in ${expected}`, () => {
200
200
expect(fn(input)).toBe(expected)
201
201
});
202
202
}" ,
203
203
"it('is true', () => {
204
204
expect(true).toBe(false);
205
205
});
206
206
for (const [input, expected] of data) {
207
- it.skip(\\ `results in $\\ {expected}\\ `, () => {
207
+ it.skip(`results in ${expected}`, () => {
208
208
expect(fn(input)).toBe(expected)
209
209
});
210
210
}" ,
211
211
"for (const [input, expected] of data) {
212
- it.skip(\\ `results in $\\ {expected}\\ `, () => {
212
+ it.skip(`results in ${expected}`, () => {
213
213
expect(fn(input)).toBe(expected)
214
214
});
215
215
}
@@ -220,44 +220,44 @@ fn test() {
220
220
expect(true).toBe(false);
221
221
});
222
222
for (const [input, expected] of data) {
223
- it.skip(\\ `results in $\\ {expected}\\ `, () => {
223
+ it.skip(`results in ${expected}`, () => {
224
224
expect(fn(input)).toBe(expected)
225
225
});
226
226
}
227
227
it('is true', () => {
228
228
expect(true).toBe(false);
229
229
});" ,
230
230
"for (const [input, expected] of data) {
231
- it(\\ `results in $\\ {expected}\\ `, () => {
231
+ it(`results in ${expected}`, () => {
232
232
expect(fn(input)).toBe(expected)
233
233
});
234
- it(\\ `results in $\\ {expected}\\ `, () => {
234
+ it(`results in ${expected}`, () => {
235
235
expect(fn(input)).toBe(expected)
236
236
});
237
237
}" ,
238
238
"for (const [input, expected] of data) {
239
- it(\\ `results in $\\ {expected}\\ `, () => {
239
+ it(`results in ${expected}`, () => {
240
240
expect(fn(input)).toBe(expected)
241
241
});
242
242
}
243
243
for (const [input, expected] of data) {
244
- it(\\ `results in $\\ {expected}\\ `, () => {
244
+ it(`results in ${expected}`, () => {
245
245
expect(fn(input)).toBe(expected)
246
246
});
247
247
}" ,
248
248
"for (const [input, expected] of data) {
249
- it(\\ `results in $\\ {expected}\\ `, () => {
249
+ it(`results in ${expected}`, () => {
250
250
expect(fn(input)).toBe(expected)
251
251
});
252
252
}
253
253
for (const [input, expected] of data) {
254
- test(\\ `results in $\\ {expected}\\ `, () => {
254
+ test(`results in ${expected}`, () => {
255
255
expect(fn(input)).toBe(expected)
256
256
});
257
257
}" ,
258
258
"for (const [input, expected] of data) {
259
259
beforeEach(() => setupSomething(input));
260
- test(\\ `results in $\\ {expected}\\ `, () => {
260
+ test(`results in ${expected}`, () => {
261
261
expect(doSomething()).toBe(expected)
262
262
});
263
263
}" ,
0 commit comments