Skip to content

Commit e897522

Browse files
authored
refactor(test): remove unused import (#337)
1 parent fb5a12f commit e897522

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

tests/extensions/persist.browser.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { waitForDebugger } from 'inspector'
21
import { test, expect } from 'playwright.extend.js'
32

43
test('persists records across page reloads', async ({ serve, page }) => {

tests/hooks/update.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Collection } from '#/src/collection.js'
2-
import type { HookEventListener, HookEventMap } from '#/src/hooks.js'
2+
import type { HookEventListener } from '#/src/hooks.js'
33
import { isRecord } from '#/src/utils.js'
44
import z from 'zod'
55

tests/relations/one-to-one.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { kRelationMap } from '#/src/collection.js'
21
import { Collection, RelationError, RelationErrorCodes } from '#/src/index.js'
32
import { isRecord } from '#/src/utils.js'
43
import z from 'zod'

tests/types/update-many.test-d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
Collection,
33
type RecordType,
44
type UpdateFunction,
5-
type UpdateOptions,
65
} from '#/src/collection.js'
76
import type { SortDirection } from '#/src/sort.js'
87
import z from 'zod'

tests/update-many.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Collection, Query } from '#/src/index.js'
2-
import type { isInt16Array } from 'node:util/types'
32
import z from 'zod'
43

54
const userSchema = z.object({

0 commit comments

Comments
 (0)