暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

skill.service.spec.ts 352B

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