Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Dec 2, 2024
1 parent 1db1666 commit 23dfb7a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dist
docs
*.log
tmp
build
build
tests/.coverage
2 changes: 1 addition & 1 deletion tests/setup-access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Object.assign(globalThis, fsAccess);

import { configureSingle } from '@zenfs/core';
import { WebAccess } from '../src/access.js';
import { copy, data } from '@zenfs/core/tests/setup/common.js';
import { copy, data } from '@zenfs/core/tests/setup.js';

await configureSingle({
backend: WebAccess,
Expand Down
2 changes: 1 addition & 1 deletion tests/setup-idb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'fake-indexeddb/auto';

import { configureSingle } from '@zenfs/core';
import { IndexedDB } from '../src/IndexedDB.js';
import { copy, data } from '@zenfs/core/tests/setup/common.js';
import { copy, data } from '@zenfs/core/tests/setup.js';

await configureSingle({
backend: IndexedDB,
Expand Down
2 changes: 1 addition & 1 deletion tests/setup-storage.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { configureSingle } from '@zenfs/core';
import { WebStorage } from '../src/Storage.js';
import { copy, data } from '@zenfs/core/tests/setup/common.js';
import { copy, data } from '@zenfs/core/tests/setup.js';

const storage = {
_: new Map<string, string>(),
Expand Down

0 comments on commit 23dfb7a

Please sign in to comment.