student.service.spec.ts 362 B

12345678910111213141516
  1. import { TestBed } from '@angular/core/testing';
  2. import { StudentService } from './student.service';
  3. describe('StudentService', () => {
  4. let service: StudentService;
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({});
  7. service = TestBed.inject(StudentService);
  8. });
  9. it('should be created', () => {
  10. expect(service).toBeTruthy();
  11. });
  12. });