17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ContributionService } from './contribution.service';
|
|
|
|
describe('ContributionService', () => {
|
|
let service: ContributionService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ContributionService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|