northwind-weather-api / apps /oauthapp /src /modules /user-session /user-session.service.spec.ts
mishrabp's picture
Upload folder using huggingface_hub
1e3bf12 verified
import { Test, TestingModule } from '@nestjs/testing';
import { UserSessionService } from './user-session.service';
describe('UserSessionService', () => {
let service: UserSessionService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [UserSessionService],
}).compile();
service = module.get<UserSessionService>(UserSessionService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});