mirror of
https://github.com/docmost/docmost.git
synced 2025-11-16 11:01:10 +10:00
* Refactor workspace membership system * Create setup endpoint * Use Passport.js * Several updates and fixes
19 lines
467 B
TypeScript
19 lines
467 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { StorageService } from './storage.service';
|
|
|
|
describe('StorageService', () => {
|
|
let service: StorageService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [StorageService],
|
|
}).compile();
|
|
|
|
service = module.get<StorageService>(StorageService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|