mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* feat: pnpm * Update publish script * gitignore the pnpm debug log * Fix workspace * Fix dev commands * feat: pnpm * Update publish script * gitignore the pnpm debug log * Fix workspace * Fix dev commands * chore: fix pnpm install in GitHub Action * fix: update tsconfig path * pnpm run -> pnpm * chore: remove cache-node and add back setup-node * fix: tsconfig dependencies * chore: fix tsconfig path * fix: adapter-test dependencies * fix: setup-node for release-pr * fix: import adapter-test * chore: update workspace dependency for next-auth * fix: test failure * fix: add jest for adapters * fix: jest again * fix: mongo in prisma * fix: `--no-git-checks` for `release-pr` Co-authored-by: Balázs Orbán <info@balazsorban.com>
14 lines
554 B
JavaScript
14 lines
554 B
JavaScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/en/configuration.html
|
|
*/
|
|
module.exports = {
|
|
...require("@next-auth/adapter-test/jest/jest-preset"),
|
|
// // Indicates whether the coverage information should be collected while executing the test
|
|
// collectCoverage: true,
|
|
// // Indicates which provider should be used to instrument code for coverage
|
|
// coverageProvider: "v8",
|
|
// A preset that is used as a base for Jest's configuration
|
|
preset: "@shelf/jest-dynamodb",
|
|
}
|