user account create

This commit is contained in:
yaschalew
2026-05-26 05:40:53 +03:00
parent 69db7cd960
commit 5a4d6baec2
24 changed files with 3387 additions and 1817 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { OtpController } from './otp.controller';
describe('OtpController', () => {
let controller: OtpController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [OtpController],
}).compile();
controller = module.get<OtpController>(OtpController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});