Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[jest-circus] Omit expect.hasAssertions() errors if a test already has errors #14866

Merged
merged 1 commit into from Jan 29, 2024

Conversation

danbeam
Copy link
Contributor

@danbeam danbeam commented Jan 25, 2024

Addresses #14084

Summary

When using expect.hasAssertions(), if an it() block throws early, you see both an error for the thrown thing and an error about not having called expect(). While this is technically correct, it's a bit spammy, IMO. The test is already gonna fail.

Example

Test:

beforeEach(() => expect.hasAssertions());

it('is correct', () => {
  expect(1).toBe(1);
});

it('is wrong', () => {});

it('is spammy', () => {
  throw new Error('throwing'); // imagine this may vary on whether it throws in reality
  expect(1).toBe(1);
});

Before:

 FAIL  frontend/example/__tests__/example.test.ts
  ✓ is correct (4 ms)
  ✕ is wrong (1 ms)
  ✕ is spammy (2 ms)

  ● is wrong

    expect.hasAssertions()

    Expected at least one assertion to be called but received none.

    > 1 | beforeEach(() => expect.hasAssertions());
        |                         ^
      2 |
      3 | it('is correct', () => {
      4 |   expect(1).toBe(1);

      at Object.hasAssertions (frontend/example/__tests__/example.test.ts:1:25)

  ● is spammy

    throwing

       8 |
       9 | it('is spammy', () => {
    > 10 |   throw new Error('throwing'); // imagine this may vary on whether it throws in reality
         |         ^
      11 |   expect(1).toBe(1);
      12 | });
      13 |

      at Object.<anonymous> (frontend/example/__tests__/example.test.ts:10:9)

  ● is spammy

    expect.hasAssertions()

    Expected at least one assertion to be called but received none.

    > 1 | beforeEach(() => expect.hasAssertions());
        |                         ^
      2 |
      3 | it('is correct', () => {
      4 |   expect(1).toBe(1);

      at Object.hasAssertions (frontend/example/__tests__/example.test.ts:1:25)

Test Suites: 1 failed, 1 total
Tests:       2 failed, 1 passed, 3 total
Snapshots:   0 total
Time:        1.392 s
Ran all test suites matching /frontend\/example\/__tests__\/example.test.ts/i.

After:

 FAIL  frontend/example/__tests__/example.test.ts
  ✓ is correct (4 ms)
  ✕ is wrong (2 ms)
  ✕ is spammy (2 ms)

  ● is wrong

    expect.hasAssertions()

    Expected at least one assertion to be called but received none.

    > 1 | beforeEach(() => expect.hasAssertions());
        |                         ^
      2 |
      3 | it('is correct', () => {
      4 |   expect(1).toBe(1);

      at Object.hasAssertions (frontend/example/__tests__/example.test.ts:1:25)

  ● is spammy

    throwing

       8 |
       9 | it('is spammy', () => {
    > 10 |   throw new Error('throwing'); // imagine this may vary on whether it throws in reality
         |         ^
      11 |   expect(1).toBe(1);
      12 | });
      13 |

      at Object.<anonymous> (frontend/example/__tests__/example.test.ts:10:9)

Test Suites: 1 failed, 1 total
Tests:       2 failed, 1 passed, 3 total
Snapshots:   0 total
Time:        1.4 s, estimated 2 s
Ran all test suites matching /frontend\/example\/__tests__\/example.test.ts/i.

Test plan

I didn't see much that's directly exercising this code at the moment so I created a new test.

Copy link

linux-foundation-easycla bot commented Jan 25, 2024

CLA Signed

The committers listed above are authorized under a signed CLA.

  • ✅ login: danbeam / name: Dan Beam (307cfe1)

Copy link

netlify bot commented Jan 25, 2024

Deploy Preview for jestjs ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit 307cfe1
🔍 Latest deploy log https://app.netlify.com/sites/jestjs/deploys/65b2cf829590e50008b629ef
😎 Deploy Preview https://deploy-preview-14866--jestjs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@danbeam danbeam force-pushed the danbeam-skip-double-hasAssertions branch from 82a67c0 to 194cde6 Compare January 25, 2024 02:19
@lencioni
Copy link
Contributor

While this is technically correct, it's a bit spammy, IMO. The test is already gonna fail.

To extrapolate this a bit further, having this extra failure being reported is a distraction/red herring that can hide the error that actually needs to be addressed and wastes developer time. I'm in favor of making this change.

One alternative that may be worth considering is exposing the pass/fail status of the test from expect.getState() #5292

If that were available, then this issue could be avoided by changing the beforeEach in this PR's example to an afterEach like this (depending on the implementation of #5292):

afterEach(() => {
  if (expect.getState().status !== 'failed') {
    expect.hasAssertions();
  }
});

@danbeam danbeam force-pushed the danbeam-skip-double-hasAssertions branch 2 times, most recently from c311ac3 to 2771bd7 Compare January 25, 2024 20:53
… already failing.

In the case of early-throwing tests, this is often just spammy.
@danbeam danbeam force-pushed the danbeam-skip-double-hasAssertions branch from 2771bd7 to 307cfe1 Compare January 25, 2024 21:15
Copy link
Member

@SimenB SimenB left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, this makes a lot of sense. Thanks!

@SimenB SimenB merged commit 38bb798 into jestjs:main Jan 29, 2024
73 checks passed
@danbeam danbeam deleted the danbeam-skip-double-hasAssertions branch February 8, 2024 22:11
Copy link

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 11, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants