Skip to content

Commit

Permalink
chore(nx-plugin): fix file template with a p tag
Browse files Browse the repository at this point in the history
  • Loading branch information
luishcastroc committed Jul 28, 2023
1 parent 699d4da commit d3901ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports[`analog-page generator > should create analog page correctly > page 1`]
@Component({
standalone: true,
imports: [],
template: \` {{ home page works!! }} \`,
template: \` <p>home page works!!</p> \`,
})
export default class HomePage {}
"
Expand All @@ -23,7 +23,7 @@ export const routeMeta: RouteMeta = {
@Component({
standalone: true,
imports: [],
template: \` {{ home page works!! }} \`,
template: \` <p>home page works!!</p> \`,
})
export default class HomePage {}
"
Expand All @@ -45,7 +45,7 @@ exports[`analog-page generator > should create analog page with subfolder correc
@Component({
standalone: true,
imports: [],
template: \` {{ post page works!! }} \`,
template: \` <p>post page works!!</p> \`,
})
export default class PostPage {}
"
Expand All @@ -57,7 +57,7 @@ exports[`analog-page generator > should create analog page with subfolder correc
@Component({
standalone: true,
imports: [],
template: \` {{ products page works!! }} \`,
template: \` <p>products page works!!</p> \`,
})
export default class ProductsPage {}
"
Expand All @@ -69,7 +69,7 @@ exports[`analog-page generator > should create analog page with subfolder correc
@Component({
standalone: true,
imports: [],
template: \` {{ productsProductId page works!! }} \`,
template: \` <p>productsProductId page works!!</p> \`,
})
export default class ProductsProductIdPage {}
"
Expand All @@ -81,7 +81,7 @@ exports[`analog-page generator > should create analog page with subfolder correc
@Component({
standalone: true,
imports: [],
template: \` {{ blog page works!! }} \`,
template: \` <p>blog page works!!</p> \`,
})
export default class BlogPage {}
"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const routeMeta: RouteMeta = {
standalone: true,
imports: [],
template: `
{{ <%= propertyName %> page works!! }}
<p><%= propertyName %> page works!!</p>
`,
})
export default class <%= className %>Page {
Expand Down

0 comments on commit d3901ab

Please sign in to comment.