I'm trying to upgrade to v28.13.0, and I have a test case as:
it(`should .....`, async () => { //...... test body await expect(Promise<string>).resolves.toBe(`....`); }); which is breaking.

Is it breaking due to await? Btw, here are the settings for this rule:
'jest/prefer-ending-with-an-expect': [ 'error', { assertFunctionNames: ['expect'], additionalTestBlockFunctions: [], }, ],