Skip to content

Commit

Permalink
Support firebase-admin v12 (#65)
Browse files Browse the repository at this point in the history
* Add firebase-admin 12.x to peer deps

* Increase test default timeout to 60s
  • Loading branch information
kafkas committed Dec 26, 2023
1 parent 4e4491e commit d9e3f23
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"url": "https://github.com/kafkas/firewalk/issues"
},
"peerDependencies": {
"firebase-admin": "11.x"
"firebase-admin": "11.x || 12.x"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion src/internal/implementations/__tests__/Migrator/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface TestItemDoc {
timestamp2?: firestore.Timestamp;
}

export const DEFAULT_TIMEOUT = 15_000;
export const DEFAULT_TIMEOUT = 60_000;

export const DEFAULT_TRAVERSABLE_SIZE = 40;

Expand Down
2 changes: 1 addition & 1 deletion src/internal/implementations/__tests__/Traverser/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface TestItemDoc {
number: number;
}

export const DEFAULT_TIMEOUT = 15_000;
export const DEFAULT_TIMEOUT = 60_000;

export const DEFAULT_TRAVERSABLE_SIZE = 100;

Expand Down

0 comments on commit d9e3f23

Please sign in to comment.