diff --git a/packages/fxa-auth-server/jest.config.js b/packages/fxa-auth-server/jest.config.js index bee5880f336..fdc39d091f2 100644 --- a/packages/fxa-auth-server/jest.config.js +++ b/packages/fxa-auth-server/jest.config.js @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ module.exports = { + displayName: 'fxa-auth-server', preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', diff --git a/packages/fxa-auth-server/project.json b/packages/fxa-auth-server/project.json new file mode 100644 index 00000000000..6479f438006 --- /dev/null +++ b/packages/fxa-auth-server/project.json @@ -0,0 +1,16 @@ +{ + "name": "fxa-auth-server", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "packages/fxa-auth-server", + "projectType": "application", + "tags": ["scope:server:auth", "type:core"], + "targets": { + "test-unit-jest": { + "executor": "@nx/jest:jest", + "options": { + "jestConfig": "packages/fxa-auth-server/jest.config.js", + "passWithNoTests": true + } + } + } +}