Files
playing-cards/src/app/services/monster/monster.service.spec.ts

17 lines
362 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { MonsterService } from './monster.service';
describe('MonsterService', () => {
let service: MonsterService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(MonsterService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});