Skip to content

Commit 6a18b9e

Browse files
committed
fix: correct import paths in test files by removing duplicate .js extensions
1 parent ccf5e63 commit 6a18b9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/__tests__/nostr-server.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { describe, it, expect, vi, beforeEach } from 'vitest';
2-
import { createWSServer } from '../core/nostr-server';
3-
import { MESSAGE_TYPES } from '../types/messages';
4-
import type { NostrWSSocket } from '../types/socket';
5-
import type { NostrWSEvent } from '../types/messages';
6-
import type { NostrWSMessage } from '../types/messages';
2+
import { createWSServer } from '../core/nostr-server.js';
3+
import { MESSAGE_TYPES } from '../types/messages.js';
4+
import type { NostrWSSocket } from '../types/socket.js';
5+
import type { NostrWSEvent } from '../types/messages.js';
6+
import type { NostrWSMessage } from '../types/messages.js';
77

88
describe('NostrWSServer', () => {
99
let mockSocket: NostrWSSocket;

0 commit comments

Comments
 (0)