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); }); it('should be defined', () => { expect(service).toBeDefined(); }); });