cleanup
This commit is contained in:
		| @@ -2,15 +2,13 @@ import { expect } from 'chai'; | ||||
|  | ||||
| import { ServiceParser } from '../../src/parsers/service.parser'; | ||||
|  | ||||
| class TestServiceParser extends ServiceParser {} | ||||
|  | ||||
| describe('ServiceParser', () => { | ||||
| 	const componentFilename: string = 'test.component.ts'; | ||||
|  | ||||
| 	let parser: TestServiceParser; | ||||
| 	let parser: ServiceParser; | ||||
|  | ||||
| 	beforeEach(() => { | ||||
| 		parser = new TestServiceParser(); | ||||
| 		parser = new ServiceParser(); | ||||
| 	}); | ||||
|  | ||||
| 	it('should support extracting binary expressions', () => { | ||||
|   | ||||
| @@ -18,10 +18,11 @@ | ||||
|         "sourceMap": true, | ||||
|         "typeRoots" : [ | ||||
|             "./node_modules/@types" | ||||
|         ], | ||||
|         ] | ||||
|     }, | ||||
|     "include": [ | ||||
|         "src/**/*.ts" | ||||
|         "src/**/*.ts", | ||||
|         "tests/**/*.ts" | ||||
|     ], | ||||
|     "exclude": [ | ||||
|         "node_modules" | ||||
|   | ||||
| @@ -79,10 +79,6 @@ | ||||
|       "check-whitespace" | ||||
|     ], | ||||
|     "prefer-const": true, | ||||
|     "quotemark": [ | ||||
|       true, | ||||
|       "single" | ||||
|     ], | ||||
|     "radix": true, | ||||
|     "semicolon": [ | ||||
|       true, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user