Skip to content

Commit

Permalink
refactor: 💡 use correct parsel type in specs
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Aug 20, 2024
1 parent 594ad98 commit ea2c65d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/converters/harness/harness.converter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ describe('Harness converter', () => {
const harnessStats = [
{
className: 'first',
type: NgParselOutputType.DIRECTIVE,
type: NgParselOutputType.HARNESS,
filePath: '',
methodsPublicExplicit: [],
},
{
className: 'second',
type: NgParselOutputType.MODULE,
type: NgParselOutputType.HARNESS,
filePath: '',
methodsPublicExplicit: [],
},
{
className: 'third',
type: NgParselOutputType.MODULE,
type: NgParselOutputType.HARNESS,
filePath: '',
methodsPublicExplicit: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/converters/module/module.converter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('Module converter', () => {
const moduleStats = [
{
className: 'first',
type: NgParselOutputType.DIRECTIVE,
type: NgParselOutputType.MODULE,
filePath: '',
imports: [],
exports: [],
Expand Down

0 comments on commit ea2c65d

Please sign in to comment.