Removed unused dependencies
This commit is contained in:
parent
076f330185
commit
64c6424ee3
|
@ -1,7 +1,7 @@
|
|||
import { afterAll, afterEach, describe, expect, it, jest, mock, spyOn } from "bun:test";
|
||||
import { afterEach, describe, expect, it, jest, spyOn } from "bun:test";
|
||||
import app from "src/app";
|
||||
import request from "supertest";
|
||||
import * as imageService from "src/services/imageService";
|
||||
import request from "supertest";
|
||||
|
||||
afterEach(() => {
|
||||
jest.restoreAllMocks();
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
import { afterAll, afterEach, describe, expect, it, jest, mock, spyOn } from "bun:test";
|
||||
import { afterEach, describe, expect, it, jest, spyOn } from "bun:test";
|
||||
import app from "src/app";
|
||||
import * as botApiService from "src/services/botApiService";
|
||||
import * as gelbooruApiService from "src/services/gelbooruApiService";
|
||||
import * as imageService from "src/services/imageService";
|
||||
import Image from "src/types/Image";
|
||||
import request from "supertest";
|
||||
import * as gelbooruApiService from "src/services/gelbooruApiService";
|
||||
import * as botApiService from "src/services/botApiService";
|
||||
import * as imageService from "src/services/imageService";
|
||||
import app from "src/app";
|
||||
import { response } from "express";
|
||||
|
||||
afterEach(() => {
|
||||
jest.restoreAllMocks();
|
||||
|
|
Loading…
Reference in New Issue