Removed unused dependencies
Unit Tests with docker compose / unit-test (push) Successful in 23s Details
Build image / build (push) Successful in 46s Details

This commit is contained in:
Sugui 2024-04-21 12:53:04 +02:00
parent 076f330185
commit 64c6424ee3
2 changed files with 7 additions and 8 deletions

View File

@ -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();

View File

@ -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();