Skip to content

Commit ea2c65d

Browse files
committed
refactor: 💡 use correct parsel type in specs
1 parent 594ad98 commit ea2c65d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/converters/harness/harness.converter.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ describe('Harness converter', () => {
66
const harnessStats = [
77
{
88
className: 'first',
9-
type: NgParselOutputType.DIRECTIVE,
9+
type: NgParselOutputType.HARNESS,
1010
filePath: '',
1111
methodsPublicExplicit: [],
1212
},
1313
{
1414
className: 'second',
15-
type: NgParselOutputType.MODULE,
15+
type: NgParselOutputType.HARNESS,
1616
filePath: '',
1717
methodsPublicExplicit: [],
1818
},
1919
{
2020
className: 'third',
21-
type: NgParselOutputType.MODULE,
21+
type: NgParselOutputType.HARNESS,
2222
filePath: '',
2323
methodsPublicExplicit: [],
2424
},

src/converters/module/module.converter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('Module converter', () => {
66
const moduleStats = [
77
{
88
className: 'first',
9-
type: NgParselOutputType.DIRECTIVE,
9+
type: NgParselOutputType.MODULE,
1010
filePath: '',
1111
imports: [],
1212
exports: [],

0 commit comments

Comments
 (0)