feat: curd

This commit is contained in:
luchang
2024-05-22 19:13:08 +08:00
parent 410bfc1e38
commit 74c77011ea
27 changed files with 316 additions and 166 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { SysUserService } from './sys-user.service';
describe('SysUserService', () => {
let service: SysUserService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SysUserService],
}).compile();
service = module.get<SysUserService>(SysUserService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});