imkFinal/backend/src/documents/documents.service.spec.ts
dimitar 3e298a1eef final version
needs file status update[pending, finished]
2025-02-24 23:43:50 +01:00

19 lines
481 B
TypeScript

import { Test, TestingModule } from '@nestjs/testing';
import { DocumentsService } from './documents.service';
describe('DocumentsService', () => {
let service: DocumentsService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [DocumentsService],
}).compile();
service = module.get<DocumentsService>(DocumentsService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});