🚨 test: #102 Correct test imports

This commit is contained in:
Nathan Smith 2024-06-30 14:33:38 -04:00
parent e5aaebc1bb
commit 9e53b68bc5
2 changed files with 2 additions and 4 deletions

View file

@ -1,5 +1,4 @@
import type { App, Scope } from "obsidian";
import type { Modal } from "obsidian";
import type { App, Scope, Modal } from "obsidian";
export class ModalMock implements Modal {
constructor(public app: App) {}

View file

@ -1,5 +1,4 @@
import { beforeEach, describe } from "node:test";
import { expect, jest, test } from "@jest/globals";
import { expect, jest, test, describe, beforeEach } from "@jest/globals";
import type { Plugin, RequestUrlResponse } from "obsidian";
import { App } from "obsidian";
import type { PluginMock } from "../__mocks__/obsidian/Plugin";