d117549348
* fix tsx usage * Revert "Revert "Merge pull request #1521 from riccardobl/tordev"" This reverts commit 4cc3780eca1f1390bdd331f0e418b9a7efd4347e. * lightning module resolution * fix our one test
8 lines
343 B
JavaScript
8 lines
343 B
JavaScript
const nextJest = require('next/jest')
|
|
|
|
// Providing the path to your Next.js app which will enable loading next.config.js and .env files
|
|
const createJestConfig = nextJest({ dir: './' })
|
|
|
|
// createJestConfig is exported in this way to ensure that next/jest can load the Next.js configuration, which is async
|
|
module.exports = createJestConfig()
|