Skip to content

Commit

Permalink
Feature: fiy test file
Browse files Browse the repository at this point in the history
  • Loading branch information
TIL-EBP committed Oct 24, 2024
1 parent 5f83154 commit 5a222b1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ import { fakeAssetPatch, fakeUser } from './asset-edit.fake';
import { AssetEditRepo } from './asset-edit.repo';

import { PrismaService } from '@/core/prisma.service';
import { FileRepo } from '@/features/files/file.repo';

describe(AssetEditRepo, () => {
const prisma = new PrismaService();
const repo = new AssetEditRepo(prisma);
const fileRepo = new FileRepo(prisma);
const repo = new AssetEditRepo(prisma, fileRepo);

beforeAll(async () => {
await setupDB(prisma);
Expand Down

0 comments on commit 5a222b1

Please sign in to comment.