@@ -650,6 +650,39 @@ module('Acceptance | code submode | inspector tests', function (hooks) {
650
650
assert . dom ( '[data-test-card-instance-definition]' ) . doesNotExist ( ) ;
651
651
} ) ;
652
652
653
+ test ( 'can switch between inspector showing module definition and inspector showing json instance definition in card inheritance panel' , async function ( assert ) {
654
+ await visitOperatorMode ( {
655
+ stacks : [ [ ] ] ,
656
+ submode : 'code' ,
657
+ codePath : `${ testRealmURL } person.gts` ,
658
+ } ) ;
659
+
660
+ await waitForCodeEditor ( ) ;
661
+ await waitFor ( '[data-test-card-inspector-panel]' ) ;
662
+ await waitFor ( '[data-test-card-module-definition]' ) ;
663
+
664
+ assert . dom ( '[data-test-card-module-definition]' ) . includesText ( 'Card' ) ;
665
+ assert . dom ( '[data-test-card-instance-definition]' ) . doesNotExist ( ) ;
666
+
667
+ await click ( '[data-test-file-browser-toggle]' ) ;
668
+ await click ( '[data-test-directory="Person/"]' ) ;
669
+ await waitFor ( '[data-test-file="Person/1.json"]' ) ;
670
+ await click ( '[data-test-file="Person/1.json"]' ) ;
671
+
672
+ await click ( '[data-test-inspector-toggle]' ) ;
673
+ await waitFor ( '[data-test-card-inspector-panel]' ) ;
674
+ await waitFor ( '[data-test-card-module-definition]' ) ;
675
+
676
+ assert
677
+ . dom ( '[data-test-card-instance-definition]' )
678
+ . includesText ( 'Hassan Abdel-Rahman' ) ;
679
+ assert
680
+ . dom (
681
+ '[data-test-card-instance-definition] [data-test-definition-file-extension]' ,
682
+ )
683
+ . includesText ( '.JSON' ) ;
684
+ } ) ;
685
+
653
686
test ( '"in-this-file" panel displays all elements and re-highlights upon selection' , async function ( assert ) {
654
687
await visitOperatorMode ( {
655
688
stacks : [ [ ] ] ,
0 commit comments