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