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.
14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
import { IssueRoutingModule } from './issue-routing.module';
|
|
|
|
describe('IssueRoutingModule', () => {
|
|
let issueRoutingModule: IssueRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
issueRoutingModule = new IssueRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(issueRoutingModule).toBeTruthy();
|
|
});
|
|
});
|