Added prettier and also prettied all the typescript files using prettier ESLint is using the AirBnB rules which are the most strict to lint the files.
19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { AccountResolverService } from './account-resolver.service';
|
|
|
|
describe('AccountResolverService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [AccountDetailResolverService],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject(
|
|
[AccountDetailResolverService],
|
|
(service: AccountDetailResolverService) => {
|
|
expect(service).toBeTruthy();
|
|
},
|
|
));
|
|
});
|