Server/project/tests/services/PaymentService.test.ts
TheSparta b31a48066b Removed usage of global.container
Importing container from tsyringe directly seems to work fine.
2023-10-29 22:20:35 +00:00

30 lines
708 B
TypeScript

import "reflect-metadata";
import { container } from "tsyringe";
import { vi, beforeAll, afterEach, describe, expect, it } from "vitest";
import { PaymentService } from "@spt-aki/services/PaymentService";
describe("PaymentService", () =>
{
let paymentService: PaymentService;
beforeAll(() =>
{
paymentService = container.resolve<PaymentService>("PaymentService");
});
afterEach(() =>
{
vi.restoreAllMocks();
});
describe("should be registered", () =>
{
it("should be registered", () =>
{
expect(paymentService).toBeDefined();
expect(container.isRegistered("PaymentService")).toBe(true);
});
});
});