mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
test/plugins/link: fix import path
This commit is contained in:
parent
5e444be37b
commit
7f5e0f3ebf
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@ import path from "path";
|
|||
import {expect} from "chai";
|
||||
import util from "../util";
|
||||
import Config from "../../server/config";
|
||||
import link, {LinkPreview} from "../../server/plugins/irc-events/link";
|
||||
import link from "../../server/plugins/irc-events/link";
|
||||
import {LinkPreview} from "../../shared/types/msg";
|
||||
|
||||
describe("Link plugin", function () {
|
||||
// Increase timeout due to unpredictable I/O on CI services
|
||||
|
|
Loading…
Reference in a new issue