Files
pokdedemo/src/app/poke-share-info.service.spec.ts

17 lines
394 B
TypeScript

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