18 lines
504 B
TypeScript
18 lines
504 B
TypeScript
import { HttpClientModule } from '@angular/common/http';
|
|
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { RateContractService } from './rate-contract.service';
|
|
|
|
describe('RateContractService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [HttpClientModule],
|
|
providers: [RateContractService],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([RateContractService], (service: RateContractService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|