Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f42a570
fix(firestore-bigquery-export): json-bigint & node-forge vulnerabilities
jauntybrain Apr 15, 2024
ac623f6
fix: try bumping jest dependency
jauntybrain Apr 15, 2024
95d54a5
chore: update node version
jauntybrain Apr 15, 2024
c3cc0cc
chore: add `skipLibCheck`
jauntybrain Apr 15, 2024
310d7fc
chore: update @types/jest to the newest version
jauntybrain Apr 15, 2024
ff20748
fix: attempt at fixing jest issues
jauntybrain Apr 15, 2024
1483ea3
chore: migrate to @jest/globals
jauntybrain Apr 15, 2024
c51c27e
chore: formatting
jauntybrain Apr 15, 2024
cc367bd
chore: add jest-environment-jsdom dependency
jauntybrain Apr 15, 2024
41e61b4
Update jest-environment-jsdom to jest-environment-node
jauntybrain Apr 15, 2024
45f1e2b
chore: set all jest packages to the same ver (29.5.0)
jauntybrain Apr 15, 2024
985fa0b
chore: update jest configuration and dependencies
jauntybrain Apr 15, 2024
0002748
chore: enable verbose jest logging
jauntybrain Apr 15, 2024
62674a0
fix: standartize jest and ts-jest versions
jauntybrain Apr 16, 2024
f72a177
fix: jest config snapshotFormat
jauntybrain Apr 16, 2024
8712031
chore: update firebase-functions-test version to 3.2.0
jauntybrain Apr 16, 2024
e178843
chore: firebase-functions version to 4.9.0
jauntybrain Apr 16, 2024
831358f
chore: bring back bq tests
jauntybrain Apr 16, 2024
df4666c
chore: bump firebase-functions-test, migrate
jauntybrain Apr 16, 2024
6c15f72
chore: fix formatting
jauntybrain Apr 16, 2024
e000854
fix(firestore-bigquery-export): bring back @types/jest, resolve all v…
jauntybrain Apr 16, 2024
9ada832
chore: cleanup
jauntybrain Apr 16, 2024
120178d
chore(auth-mailchimp-sync): bump dependencies, fix vulnerabilities
jauntybrain Apr 18, 2024
e33d734
chore(delete-user-data): bump dependencies, fix vulnerabilities
jauntybrain Apr 18, 2024
bb69249
chore(firestore-counter): bump dependencies, fix vulnerabilities
jauntybrain Apr 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions auth-mailchimp-sync/functions/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ module.exports = {
tsConfig: "<rootDir>/__tests__/tsconfig.json",
},
},
snapshotFormat: {
escapeString: true,
printBasicPrototype: true,
},
testEnvironment: "node",
preset: "ts-jest",
globalSetup: "./jest.setup.js",
Expand Down
13,938 changes: 4,498 additions & 9,440 deletions auth-mailchimp-sync/functions/package-lock.json

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions auth-mailchimp-sync/functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,17 @@
"generate-readme": "firebase ext:info .. --markdown > ../README.md"
},
"dependencies": {
"firebase-admin": "^11.4.1",
"firebase-functions": "^4.2.0",

"mailchimp-api-v3": "^1.12.1",
"typescript": "^4.4.4",
"firebase-admin": "^12.1.0",
"firebase-functions": "^4.9.0",
"mailchimp-api-v3": "^1.15.0",
"typescript": "^4.8.4",
"rimraf": "^2.6.3"
},
"devDependencies": {
"firebase-functions-test": "^0.1.7",
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"ts-jest": "^24.1.0"
"firebase-functions-test": "^3.2.0",
"@types/jest": "29.5.0",
"jest": "29.5.0",
"ts-jest": "29.1.2"
},
"engines": {
"node": "18"
Expand Down
4 changes: 4 additions & 0 deletions delete-user-data/functions/__tests__/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"target": "ES2020"
},
"include": ["**/*"]
}
4 changes: 4 additions & 0 deletions delete-user-data/functions/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ module.exports = {
"<rootDir>/node_modules/firebase-admin/lib/firestore",
"firebase-admin/auth": "<rootDir>/node_modules/firebase-admin/lib/auth",
},
snapshotFormat: {
escapeString: true,
printBasicPrototype: true,
},
};
Loading