Skip to content

Commit

Permalink
fix: 馃悰 update tests for pipe and directive
Browse files Browse the repository at this point in the history
  • Loading branch information
ilirbeqirii committed Jun 10, 2024
1 parent 43b86af commit a442ad6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/parser/shared/parser/decorator.parser.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('DecoratorParser', () => {

it('should parse directive decorator properties', () => {
const ast = tsquery.ast(`
@Component({
@Directive({
selector: 'my-directive',
})
export class MyTestClass {}
Expand All @@ -56,7 +56,7 @@ describe('DecoratorParser', () => {

it('should parse standalone directive decorator properties', () => {
const ast = tsquery.ast(`
@Component({
@Directive({
selector: 'my-directive',
standalone: true,
})
Expand All @@ -73,7 +73,7 @@ describe('DecoratorParser', () => {

it('should parse pipe decorator properties', () => {
const ast = tsquery.ast(`
@Component({
@Pipe({
name: 'my-pipe',
})
export class MyTestClass {}
Expand All @@ -88,7 +88,7 @@ describe('DecoratorParser', () => {

it('should parse pipe decorator properties', () => {
const ast = tsquery.ast(`
@Component({
@Pipe({
name: 'my-pipe',
standalone: true,
})
Expand Down

0 comments on commit a442ad6

Please sign in to comment.