@@ -2,74 +2,62 @@ import {test, expect} from '@playwright/test'
2
2
import { visit } from '../test-helpers/storybook'
3
3
import { themes } from '../test-helpers/themes'
4
4
5
- test . describe ( 'Radio' , ( ) => {
6
- test . describe ( 'Default' , ( ) => {
7
- for ( const theme of themes ) {
8
- test . describe ( theme , ( ) => {
9
- test ( 'default @vrt' , async ( { page} ) => {
10
- await visit ( page , {
11
- id : 'components-radio--default' ,
12
- globals : {
13
- colorScheme : theme ,
14
- } ,
15
- } )
5
+ const stories = [
6
+ {
7
+ title : 'Default' ,
8
+ id : 'components-radio--default' ,
9
+ } ,
10
+ {
11
+ title : 'Disabled' ,
12
+ id : 'components-radio-features--disabled' ,
13
+ } ,
14
+ {
15
+ title : 'With Caption' ,
16
+ id : 'components-radio-features--with-caption' ,
17
+ } ,
18
+ {
19
+ title : 'With Leading Visual' ,
20
+ id : 'components-radio-features--with-leading-visual' ,
21
+ } ,
22
+ ] as const
16
23
17
- // Default state
18
- expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.Default.${ theme } .png` )
19
- } )
20
- } )
21
- }
22
- } )
24
+ test . describe ( 'Radio' , ( ) => {
25
+ for ( const story of stories ) {
26
+ test . describe ( story . title , ( ) => {
27
+ for ( const theme of themes ) {
28
+ test . describe ( theme , ( ) => {
29
+ test ( 'default @vrt' , async ( { page} ) => {
30
+ await visit ( page , {
31
+ id : story . id ,
32
+ globals : {
33
+ colorScheme : theme ,
34
+ } ,
35
+ } )
23
36
24
- test . describe ( 'Disabled' , ( ) => {
25
- for ( const theme of themes ) {
26
- test . describe ( theme , ( ) => {
27
- test ( 'default @vrt' , async ( { page} ) => {
28
- await visit ( page , {
29
- id : 'components-radio-features--disabled' ,
30
- globals : {
31
- colorScheme : theme ,
32
- } ,
37
+ // Default state
38
+ expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.${ story . title } .${ theme } .png` )
33
39
} )
34
-
35
- // Default state
36
- expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.Disabled.${ theme } .png` )
37
40
} )
38
- } )
39
- }
40
- } )
41
+ }
42
+ } )
43
+ }
41
44
42
- test . describe ( 'With Caption ' , ( ) => {
45
+ test . describe ( 'Checked ' , ( ) => {
43
46
for ( const theme of themes ) {
44
47
test . describe ( theme , ( ) => {
45
48
test ( 'default @vrt' , async ( { page} ) => {
46
49
await visit ( page , {
47
- id : 'components-radio-features--with-caption ' ,
50
+ id : 'components-radio--playground ' ,
48
51
globals : {
49
52
colorScheme : theme ,
50
53
} ,
51
- } )
52
-
53
- // Default state
54
- expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.With Caption.${ theme } .png` )
55
- } )
56
- } )
57
- }
58
- } )
59
-
60
- test . describe ( 'With Leading Visual' , ( ) => {
61
- for ( const theme of themes ) {
62
- test . describe ( theme , ( ) => {
63
- test ( 'default @vrt' , async ( { page} ) => {
64
- await visit ( page , {
65
- id : 'components-radio-features--with-leading-visual' ,
66
- globals : {
67
- colorScheme : theme ,
54
+ args : {
55
+ checked : true ,
68
56
} ,
69
57
} )
70
58
71
59
// Default state
72
- expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.With Leading Visual .${ theme } .png` )
60
+ expect ( await page . screenshot ( ) ) . toMatchSnapshot ( `Radio.Checked .${ theme } .png` )
73
61
} )
74
62
} )
75
63
}
0 commit comments