Skip to content

Commit

Permalink
fix: syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMelox committed Dec 10, 2024
1 parent 9c475d9 commit 41d9a82
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/ibm-products/src/components/Coachmark/Coachmark.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,12 @@ describe(componentName, () => {
it('tests clamp helper function', () => {
expect(clamp(100, 50, 20)).toBe(50);
expect(clamp(40, 10, 50)).toBe(40);
it('Check coachmark can be open by default', () => {
renderCoachmark({
'data-testid': dataTestId,
isOpenByDefault: true,
it('Check coachmark can be open by default', () => {
renderCoachmark({
'data-testid': dataTestId,
isOpenByDefault: true,
});
expect(isCoachmarkVisible()).toBeTruthy();
});
expect(isCoachmarkVisible()).toBeTruthy();
});
});

0 comments on commit 41d9a82

Please sign in to comment.