Sengi-Windows-MacOS-Linux/src/app/services/mastodon.service.spec.ts

16 lines
387 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { MastodonService } from './mastodon.service';
xdescribe('MastodonService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [MastodonService]
});
});
it('should be created', inject([MastodonService], (service: MastodonService) => {
expect(service).toBeTruthy();
}));
});