Wolf Fivousix
Wolf Fivousix

Reputation: 33

ReferenceError: test is not defined with Jest

I am trying to run the most basic example with Jest, yet I don't seem to be able to. Followed the instructions here: https://jestjs.io/docs/en/getting-started.html

Boom, reference error. What am I missing here?

This is my console output:

FAIL  ./sum.test.js
  ● Test suite failed to run
    ReferenceError: test is not defined
      1 | const sum = require('./sum');
      2 |
    > 3 | test('adds 1 + 2 to equal 3', () => {
        | ^
      4 |   expect(sum(1, 2)).toBe(3);
      5 | });
      at Object.<anonymous> (sum.test.js:3:1)
    Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        0.957 s
Ran all test suites.
(node:21384) ExperimentalWarning: The fs.promises API is experimental
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] test: `jest`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] test script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

Upvotes: 3

Views: 23004

Answers (1)

Klaycon
Klaycon

Reputation: 11080

Seems related to this issue: https://github.com/facebook/jest/issues/9538

Try upgrading your node version to at least v10.14.2 or downgrading jest to at most v25.2.2.

Upvotes: 2

Related Questions