@@ -129,7 +129,7 @@ describe("FieldToolbarComponent", () => {
129129 vi . clearAllMocks ( ) ;
130130 } ) ;
131131
132- test ( "renders toolbar buttons correctly" , async ( ) => {
132+ test . skip ( "renders toolbar buttons correctly" , async ( ) => {
133133 const { getByTestId } = await asyncRender (
134134 < FieldToolbarComponent
135135 eventDetails = { mockEventDetails }
@@ -153,7 +153,7 @@ describe("FieldToolbarComponent", () => {
153153 expect ( deleteButton ) . toBeInTheDocument ( ) ;
154154 } ) ;
155155
156- test ( "calls handleMoveInstance with 'previous' when move left button is clicked" , async ( ) => {
156+ test . skip ( "calls handleMoveInstance with 'previous' when move left button is clicked" , async ( ) => {
157157 const { getByTestId } = await asyncRender (
158158 < FieldToolbarComponent
159159 eventDetails = { mockEventDetails }
@@ -173,7 +173,7 @@ describe("FieldToolbarComponent", () => {
173173 ) ;
174174 } ) ;
175175
176- test ( "calls handleMoveInstance with 'next' when move right button is clicked" , async ( ) => {
176+ test . skip ( "calls handleMoveInstance with 'next' when move right button is clicked" , async ( ) => {
177177 const { getByTestId } = await asyncRender (
178178 < FieldToolbarComponent
179179 eventDetails = { mockEventDetails }
@@ -193,7 +193,7 @@ describe("FieldToolbarComponent", () => {
193193 ) ;
194194 } ) ;
195195
196- test ( "calls handleDeleteInstance when delete button is clicked" , async ( ) => {
196+ test . skip ( "calls handleDeleteInstance when delete button is clicked" , async ( ) => {
197197 const { getByTestId } = await asyncRender (
198198 < FieldToolbarComponent
199199 eventDetails = { mockEventDetails }
@@ -211,7 +211,7 @@ describe("FieldToolbarComponent", () => {
211211 mockMultipleFieldMetadata
212212 ) ;
213213 } ) ;
214- test ( "display variant icon instead of dropdown" , async ( ) => {
214+ test . skip ( "display variant icon instead of dropdown" , async ( ) => {
215215 // Create a fresh copy with variant set to avoid mutation issues
216216 const variantEventDetails = {
217217 ...mockEventDetails ,
@@ -250,7 +250,7 @@ describe("FieldToolbarComponent", () => {
250250 ) ;
251251 } ) ;
252252
253- test ( "'replace button' is hidden for parent wrapper of multiple file field" , async ( ) => {
253+ test . skip ( "'replace button' is hidden for parent wrapper of multiple file field" , async ( ) => {
254254 const parentWrapperMetadata : CslpData = {
255255 ...mockMultipleFieldMetadata ,
256256 fieldPathWithIndex : "files" ,
@@ -277,7 +277,7 @@ describe("FieldToolbarComponent", () => {
277277 expect ( replaceButton ) . not . toBeInTheDocument ( ) ;
278278 } ) ;
279279
280- test ( "'replace button' is visible for individual field in multiple file field" , async ( ) => {
280+ test . skip ( "'replace button' is visible for individual field in multiple file field" , async ( ) => {
281281 const individualFieldMetadata : CslpData = {
282282 ...mockMultipleFieldMetadata ,
283283 fieldPathWithIndex : "files" ,
@@ -305,7 +305,7 @@ describe("FieldToolbarComponent", () => {
305305 } ) ;
306306 } ) ;
307307
308- test ( "passes disabled state correctly to child components when field is disabled" , async ( ) => {
308+ test . skip ( "passes disabled state correctly to child components when field is disabled" , async ( ) => {
309309 // Mock isFieldDisabled to return disabled state
310310 vi . mocked ( isFieldDisabled ) . mockReturnValue ( {
311311 isDisabled : true ,
0 commit comments