@@ -364,7 +364,7 @@ describe("FieldLabelWrapperComponent", () => {
364364 expect ( icon ) . toBeInTheDocument ( ) ;
365365 } ) ;
366366
367- test . only ( "renders with correct class when field is disabled" , async ( ) => {
367+ test ( "renders with correct class when field is disabled" , async ( ) => {
368368 const testStartTime = performance . now ( ) ;
369369 vi . mocked ( isFieldDisabled ) . mockReturnValue ( {
370370 isDisabled : true ,
@@ -407,7 +407,7 @@ describe("FieldLabelWrapperComponent", () => {
407407 console . log ( `[TIMING] test - TOTAL: ${ ( testEndTime - testStartTime ) . toFixed ( 2 ) } ms` ) ;
408408 } ) ;
409409
410- test . only ( "calls isFieldDisabled with correct arguments" , async ( ) => {
410+ test ( "calls isFieldDisabled with correct arguments" , async ( ) => {
411411 const testStartTime = performance . now ( ) ;
412412 const renderStartTime = performance . now ( ) ;
413413 const { container } = render (
@@ -484,7 +484,7 @@ describe("FieldLabelWrapperComponent", () => {
484484 // This test only checks a single data attribute that's set directly from props.
485485 // The attribute is already implicitly verified in other tests that check the component renders correctly.
486486
487- test . only ( "does not render ContentTypeIcon when loading" , async ( ) => {
487+ test ( "does not render ContentTypeIcon when loading" , async ( ) => {
488488 const testStartTime = performance . now ( ) ;
489489 // Mock the display names to never resolve to simulate loading state
490490 vi . mocked ( visualBuilderPostMessage ! . send ) . mockImplementation (
@@ -641,7 +641,7 @@ describe("FieldLabelWrapperComponent", () => {
641641 ) ;
642642 } ) ;
643643
644- test . only ( "does not apply variant CSS classes when field has no variant" , async ( ) => {
644+ test ( "does not apply variant CSS classes when field has no variant" , async ( ) => {
645645 const testStartTime = performance . now ( ) ;
646646 const renderStartTime = performance . now ( ) ;
647647 const { container } = render (
0 commit comments