File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
browser_tests/tests/vueNodes/nodeStates Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,17 +50,17 @@ test.describe('Vue Node Collapse', () => {
5050
5151 // Check initial expanded state icon
5252 let iconClass = await vueNode . getCollapseIconClass ( )
53- expect ( iconClass ) . toContain ( 'pi-chevron-down ' )
53+ expect ( iconClass ) . not . toContain ( '-rotate-90 ' )
5454
5555 // Collapse and check icon
5656 await vueNode . toggleCollapse ( )
5757 iconClass = await vueNode . getCollapseIconClass ( )
58- expect ( iconClass ) . toContain ( 'pi-chevron-right ' )
58+ expect ( iconClass ) . toContain ( '-rotate-90 ' )
5959
6060 // Expand and check icon
6161 await vueNode . toggleCollapse ( )
6262 iconClass = await vueNode . getCollapseIconClass ( )
63- expect ( iconClass ) . toContain ( 'pi-chevron-down ' )
63+ expect ( iconClass ) . not . toContain ( '-rotate-90 ' )
6464 } )
6565
6666 test ( 'should preserve title when collapsing/expanding' , async ( {
You can’t perform that action at this time.
0 commit comments