@@ -247,7 +247,7 @@ But the last call returned:
247247 <red>\\"foo\\"</>"
248248`;
249249
250- exports[`lastReturnedWith works with three calls 1`] = `
250+ exports[`lastReturnedWith works with three calls (3rd) 1`] = `
251251"<dim>expect(</><red>jest.fn()</><dim>).not.lastReturnedWith(</><green>expected</><dim>)</>
252252
253253Expected mock function to not have last returned:
@@ -426,23 +426,23 @@ Expected mock function \\"named-mock\\" first call to have returned with:
426426But it was <red>not called</>"
427427`;
428428
429- exports[`nthReturnedWith incomplete recursive calls are handled properly 1`] = `
429+ exports[`nthReturnedWith incomplete recursive calls are handled properly 1`] = `
430430"<dim>expect(</><red>jest.fn()</><dim>).nthReturnedWith(</><green>expected</><dim>)</>
431431
432432Expected mock function first call to have returned with:
433433 <green>6</>
434434But the first call <red>has not returned yet</>"
435435`;
436436
437- exports[`nthReturnedWith incomplete recursive calls are handled properly 2`] = `
437+ exports[`nthReturnedWith incomplete recursive calls are handled properly 2`] = `
438438"<dim>expect(</><red>jest.fn()</><dim>).nthReturnedWith(</><green>expected</><dim>)</>
439439
440440Expected mock function second call to have returned with:
441441 <green>3</>
442442But the second call <red>has not returned yet</>"
443443`;
444444
445- exports[`nthReturnedWith incomplete recursive calls are handled properly 3`] = `
445+ exports[`nthReturnedWith incomplete recursive calls are handled properly 3`] = `
446446"<dim>expect(</><red>jest.fn()</><dim>).not.nthReturnedWith(</><green>expected</><dim>)</>
447447
448448Expected mock function third call to not have returned with:
@@ -451,7 +451,7 @@ But the third call returned exactly:
451451 <red>1</>"
452452`;
453453
454- exports[`nthReturnedWith incomplete recursive calls are handled properly 4`] = `
454+ exports[`nthReturnedWith incomplete recursive calls are handled properly 4`] = `
455455"<dim>expect(</><red>jest.fn()</><dim>).not.nthReturnedWith(</><green>expected</><dim>)</>
456456
457457Expected mock function 4th call to not have returned with:
@@ -1625,7 +1625,7 @@ But the last call returned:
16251625 <red>\\"foo\\"</>"
16261626`;
16271627
1628- exports[`toHaveLastReturnedWith works with three calls 1`] = `
1628+ exports[`toHaveLastReturnedWith works with three calls (3rd) 1`] = `
16291629"<dim>expect(</><red>jest.fn()</><dim>).not.toHaveLastReturnedWith(</><green>expected</><dim>)</>
16301630
16311631Expected mock function to not have last returned:
@@ -1667,23 +1667,23 @@ Expected mock function \\"named-mock\\" first call to have returned with:
16671667But it was <red>not called</>"
16681668`;
16691669
1670- exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 1`] = `
1670+ exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 1`] = `
16711671"<dim>expect(</><red>jest.fn()</><dim>).toHaveNthReturnedWith(</><green>expected</><dim>)</>
16721672
16731673Expected mock function first call to have returned with:
16741674 <green>6</>
16751675But the first call <red>has not returned yet</>"
16761676`;
16771677
1678- exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 2`] = `
1678+ exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 2`] = `
16791679"<dim>expect(</><red>jest.fn()</><dim>).toHaveNthReturnedWith(</><green>expected</><dim>)</>
16801680
16811681Expected mock function second call to have returned with:
16821682 <green>3</>
16831683But the second call <red>has not returned yet</>"
16841684`;
16851685
1686- exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 3`] = `
1686+ exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 3`] = `
16871687"<dim>expect(</><red>jest.fn()</><dim>).not.toHaveNthReturnedWith(</><green>expected</><dim>)</>
16881688
16891689Expected mock function third call to not have returned with:
@@ -1692,7 +1692,7 @@ But the third call returned exactly:
16921692 <red>1</>"
16931693`;
16941694
1695- exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 4`] = `
1695+ exports[`toHaveNthReturnedWith incomplete recursive calls are handled properly 4`] = `
16961696"<dim>expect(</><red>jest.fn()</><dim>).not.toHaveNthReturnedWith(</><green>expected</><dim>)</>
16971697
16981698Expected mock function 4th call to not have returned with:
@@ -2009,7 +2009,7 @@ exports[`toHaveReturnedTimes includes the custom mock name in the error message
20092009Expected mock function \\"named-mock\\" to have returned <green>one time</>, but it returned <red>two times</>."
20102010`;
20112011
2012- exports[`toHaveReturnedTimes incomplete recursive calls are handled properly 1`] = `
2012+ exports[`toHaveReturnedTimes incomplete recursive calls are handled properly (2nd) 1`] = `
20132013"<dim>expect(</><red>jest.fn()</><dim>).not.toHaveReturnedTimes(</><green>2</><dim>)</>
20142014
20152015Expected mock function not to have returned <green>two times</>, but it returned exactly <red>two times</>."
@@ -2108,7 +2108,7 @@ Expected mock function \\"named-mock\\" to have returned:
21082108But it did <red>not return</>."
21092109`;
21102110
2111- exports[`toHaveReturnedWith incomplete recursive calls are handled properly 1`] = `
2111+ exports[`toHaveReturnedWith incomplete recursive calls are handled properly (3rd) 1`] = `
21122112"<dim>expect(</><red>jest.fn()</><dim>).toHaveReturnedWith(</><green>expected</><dim>)</>
21132113
21142114Expected mock function to have returned:
@@ -2404,7 +2404,7 @@ exports[`toReturnTimes includes the custom mock name in the error message 1`] =
24042404Expected mock function \\"named-mock\\" to have returned <green>one time</>, but it returned <red>two times</>."
24052405`;
24062406
2407- exports[`toReturnTimes incomplete recursive calls are handled properly 1`] = `
2407+ exports[`toReturnTimes incomplete recursive calls are handled properly (2nd) 1`] = `
24082408"<dim>expect(</><red>jest.fn()</><dim>).not.toReturnTimes(</><green>2</><dim>)</>
24092409
24102410Expected mock function not to have returned <green>two times</>, but it returned exactly <red>two times</>."
@@ -2503,7 +2503,7 @@ Expected mock function \\"named-mock\\" to have returned:
25032503But it did <red>not return</>."
25042504`;
25052505
2506- exports[`toReturnWith incomplete recursive calls are handled properly 1`] = `
2506+ exports[`toReturnWith incomplete recursive calls are handled properly (3rd) 1`] = `
25072507"<dim>expect(</><red>jest.fn()</><dim>).toReturnWith(</><green>expected</><dim>)</>
25082508
25092509Expected mock function to have returned:
0 commit comments