Skip to content
Advertisement

Why jest is not working with imported test data?

Here a test data defined in sum-test-cases.js with the following

JavaScript

Here is the jest test file sum.test.js with the following

JavaScript

The test failed with the following error:

JavaScript

However, instead of importing the data from another file, if I define the data within the test file like the following, the test works as expected.

JavaScript

The test data is exactly the same, why it’s only working if the data is defined within the test file, and fails when the test data is defined in another file and imported into the test file?

Advertisement

Answer

The module.exports that exists in one file is the exact same thing that a require returns in a different file. This:

JavaScript

is nearly the same as doing, in a single file:

JavaScript

Like the error says:

Instead was called with: {"sumTestCases": [Array]}

You’re passing an object, not an array.

Either assign the whole array as the export:

JavaScript

or access the sumTestCases property of the object after importing.

JavaScript
Advertisement