source: Sources/frontend/src/app/student-course.service.spec.ts

Last change on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 393 bytes
Line 
1import { TestBed } from '@angular/core/testing';
2
3import { StudentCourseService } from './student-course.service';
4
5describe('StudentCourseService', () => {
6 let service: StudentCourseService;
7
8 beforeEach(() => {
9 TestBed.configureTestingModule({});
10 service = TestBed.inject(StudentCourseService);
11 });
12
13 it('should be created', () => {
14 expect(service).toBeTruthy();
15 });
16});
Note: See TracBrowser for help on using the repository browser.