Skip to content

Commit

Permalink
fix: incorrect imports from dist, use src instead
Browse files Browse the repository at this point in the history
  • Loading branch information
d0kur0 committed Dec 24, 2021
1 parent 25107a4 commit 6f09bd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/fourChannel/fetchFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fetchMock from "jest-fetch-mock";

import { fourChannelFactory } from "../../src";
import { File } from "../../src";
import { Thread } from "../../dist";
import { Thread } from "../../src";

const fakeResponse = {
posts: [
Expand Down
2 changes: 1 addition & 1 deletion __tests__/twoChannel/fetchFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fetchMock from "jest-fetch-mock";

import { twoChannelFactory } from "../../src";
import { File } from "../../src";
import { Thread } from "../../dist";
import { Thread } from "../../src";

const fakeResponse = {
threads: [
Expand Down

0 comments on commit 6f09bd7

Please sign in to comment.