We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0546d commit 3fff130Copy full SHA for 3fff130
apps/app/project.json
@@ -30,6 +30,7 @@
30
"externalDependencies": [
31
"@apollo/gateway",
32
"@apollo/subgraph",
33
+ "@apollo/server",
34
"@as-integrations/fastify",
35
"@mikro-orm/core",
36
"@nestjs/*",
@@ -53,9 +54,9 @@
53
54
"configurations": {
55
"production": {
56
"budgets": [
- {
57
+ {
58
"type": "initial",
- "maximumWarning": "500kb",
59
+ "maximumWarning": "1mb",
60
"maximumError": "2mb"
61
},
62
{
libs/frontend/modules/auth/src/test-setup.ts
@@ -0,0 +1,8 @@
1
+// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
2
+globalThis.ngJest = {
3
+ testEnvironmentOptions: {
4
+ errorOnUnknownElements: true,
5
+ errorOnUnknownProperties: true,
6
+ },
7
+};
8
+import 'jest-preset-angular/setup-jest';
0 commit comments