Bring in hapi-nextauth and dev support libs
This commit is contained in:
parent
feab3f90d7
commit
7aa1ec74eb
45 changed files with 14633 additions and 1141 deletions
21
packages/jest-config-link/jest-preset.js
Normal file
21
packages/jest-config-link/jest-preset.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
module.exports = {
|
||||
testEnvironment: 'node',
|
||||
roots: ["<rootDir>", "<rootDir>/src"],
|
||||
passWithNoTests: true,
|
||||
testMatch: ["<rootDir>/src/**/*.spec.{ts,tsx}"],
|
||||
silent: false,
|
||||
verbose: true,
|
||||
collectCoverage: true,
|
||||
coverageDirectory: "coverage",
|
||||
testPathIgnorePatterns: [
|
||||
"/node_modules"
|
||||
],
|
||||
|
||||
/*
|
||||
The modulePathIgnorePatterns accepts these sorts of paths:
|
||||
<rootDir>/src
|
||||
<rootDir>/src/file.ts
|
||||
...and ignores anything else under <rootDir>
|
||||
*/
|
||||
modulePathIgnorePatterns: ["^<rootDir>/(?!(?:src/)|(?:src$))"]
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue