add bot wsp

This commit is contained in:
Valentin Romero
2026-06-30 22:04:56 -03:00
parent 6859b89262
commit 25d4ba6cc0
166 changed files with 29830 additions and 0 deletions
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AttendanceService } from './attendance.service';
describe('AttendanceService', () => {
let service: AttendanceService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [AttendanceService],
}).compile();
service = module.get<AttendanceService>(AttendanceService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});