Skip to content

Commit

Permalink
test: 💍 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBasal committed Dec 29, 2020
1 parent 1b6cec7 commit f68c0b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cypress/integration/helipopper.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ describe("@ngneat/helipopper", () => {
it("should create tooltip with a custom template", () => {
cy.get("#custom-template button")
.click()
.get("p")
.contains("Right?")
.get(".positions")
.contains("top")
.should("exist");
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h6>Custom Template</h6>
</div>

<ng-template #tpl let-hide>
<div *ngFor="let item of tooltipPositions">
<div *ngFor="let item of tooltipPositions" class='positions'>
{{ item }}
</div>
</ng-template>
Expand Down

0 comments on commit f68c0b5

Please sign in to comment.