mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-19 19:21:04 +10:00
19 lines
488 B
TypeScript
19 lines
488 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { AttachmentService } from './attachment.service';
|
|
|
|
describe('AttachmentService', () => {
|
|
let service: AttachmentService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [AttachmentService],
|
|
}).compile();
|
|
|
|
service = module.get<AttachmentService>(AttachmentService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|