Skip to content

Commit 3ad1959

Browse files
authored
Update checkbox.e2e.ts
1 parent f5c4761 commit 3ad1959

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

core/src/components/checkbox/test/basic/checkbox.e2e.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,12 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) =>
101101
});
102102

103103
test.describe(title('checkbox: click'), () => {
104-
test('clicking a checkbox label should only trigger onclick once', async ({ page }) => {
104+
test('clicking a checkbox label should only trigger onclick once', async ({ page }, testInfo) => {
105+
testInfo.annotations.push({
106+
type: 'issue',
107+
description: 'https://github.com/ionic-team/ionic-framework/issues/30165',
108+
});
109+
105110
// Create a spy function in page context
106111
await page.setContent(`<ion-checkbox onclick="console.log('click called')">Test Checkbox</ion-checkbox>`, config);
107112

0 commit comments

Comments
 (0)