@@ -52,7 +52,7 @@ test.describe('basic', () => {
5252 } )
5353} )
5454
55- test . describe . skip ( 'css' , ( ) => {
55+ test . describe ( 'css' , ( ) => {
5656 test ( 'default style of css vars' , async ( { mount } ) => {
5757 const sfc = await mount ( TestBasic )
5858 const vuePreviewContainer = await sfc . locator ( '.vue-preview__container' )
@@ -132,7 +132,7 @@ test.describe.skip('css', () => {
132132 } )
133133} )
134134
135- test . describe . skip ( 'props' , ( ) => {
135+ test . describe ( 'props' , ( ) => {
136136 test ( 'default props' , async ( { mount } ) => {
137137 const sfc = await mount ( TestBasic )
138138 const iframe = await sfc . frameLocator ( 'iframe' )
@@ -150,9 +150,9 @@ test.describe.skip('props', () => {
150150
151151 // code
152152 const h1 = await iframe . locator ( 'h1' )
153- await expect ( h1 ) . toHaveText ( 'test props ' )
154- const input = await iframe . locator ( 'input ' )
155- await expect ( input ) . toHaveValue ( 'test props ')
153+ await expect ( h1 ) . toHaveText ( 'Test ' )
154+ const span = await iframe . locator ( 'span ' )
155+ await expect ( span ) . toHaveText ( 'true ')
156156
157157 // collapse
158158 const editor = await sfc . locator ( '.editor' )
0 commit comments