Skip to content

Commit 1d26570

Browse files
committed
test(checkbox, toggle): add comments
1 parent d1b804d commit 1d26570

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ configs().forEach(({ title, screenshot, config }) => {
4444
});
4545
});
4646

47+
/**
48+
* This behavior does not vary across modes/directions
49+
*/
4750
configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, screenshot, config }) => {
4851
test.describe(title('checkbox: ionChange'), () => {
4952
test('should fire ionChange when interacting with checkbox', async ({ page }) => {

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { expect } from '@playwright/test';
22
import { configs, test } from '@utils/test/playwright';
33

4+
/**
5+
* This behavior does not vary across modes/directions
6+
*/
47
configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, screenshot, config }) => {
58
test.describe(title('toggle: ionChange'), () => {
69
test('should fire ionChange when interacting with toggle', async ({ page }) => {

0 commit comments

Comments
 (0)