Skip to content

Commit

Permalink
chore(deps): update typescript-eslint monorepo to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Mnigos committed Sep 8, 2024
1 parent 9fbd77f commit 85c47ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@
"@types/node": "20.14.14",
"@types/passport-jwt": "4.0.1",
"@types/passport-spotify": "2.0.4",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitizen": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/common/mocks/create-query-builder.factory.mock.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export function createQueryBuilderFactoryMock<T>(entity?: T) {
export function createQueryBuilderFactoryMock(entity?: unknown) {
return vi.fn().mockReturnValue(createQueryBuilderMockImplementation(entity))
}

export function createQueryBuilderMockImplementation<T>(entity?: T) {
export function createQueryBuilderMockImplementation(entity?: unknown) {
return {
orderBy: vi.fn().mockReturnThis(),
connection: {
Expand Down

0 comments on commit 85c47ad

Please sign in to comment.