Skip to content

Commit

Permalink
add missing ext
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Jan 20, 2024
1 parent cb74b61 commit 094c6e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/misskey-js/test-d/api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expectType } from 'tsd';
import * as Misskey from '../src';
import * as Misskey from '../src/index.js';

describe('API', () => {
test('success', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/test-d/streaming.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expectType } from 'tsd';
import * as Misskey from '../src';
import * as Misskey from '../src/index.js';

describe('Streaming', () => {
test('emit type', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/test/api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { enableFetchMocks } from 'jest-fetch-mock';
import { APIClient, isAPIError } from '../src/api';
import { APIClient, isAPIError } from '../src/api.js';

enableFetchMocks();

Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/test/streaming.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import WS from 'jest-websocket-mock';
import Stream from '../src/streaming';
import Stream from '../src/streaming.js';

describe('Streaming', () => {
test('useChannel', async () => {
Expand Down

0 comments on commit 094c6e3

Please sign in to comment.