Skip to content

Commit

Permalink
test: use node:test instead of jest
Browse files Browse the repository at this point in the history
  • Loading branch information
negezor committed Apr 10, 2024
1 parent 0d1fc04 commit 982a9ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/cacher/test/cacher.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { describe, it } from 'node:test';

describe('Coming', (): void => {
it('Soon', (): void => {});
});
4 changes: 3 additions & 1 deletion packages/redis/test/redis.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { describe, it } from 'node:test';

describe('Coming', (): void => {
it('Soon', (): void => {});
it('Soon', (): void => { });
});

0 comments on commit 982a9ca

Please sign in to comment.