File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
apps/remix-ide-e2e/src/tests Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -48,17 +48,14 @@ module.exports = {
4848 . assert . containsText ( 'h6[data-id="sidePanelSwapitTitle"]' , 'FILE EXPLORER' )
4949 } ,
5050
51- 'Toggles Terminal' : function ( browser : NightwatchBrowser ) {
51+ 'Hides Terminal' : function ( browser : NightwatchBrowser ) {
5252 browser . waitForElementVisible ( 'div[data-id="terminalContainer"]' )
5353 . assert . elementPresent ( 'div[data-id="terminalCli"]' )
5454 . assert . elementPresent ( 'div[data-id="terminalContainer"]' )
5555 . waitForElementVisible ( 'div[data-id="terminalContainer"]' )
5656 . waitForElementVisible ( 'div[data-id="terminalCli"]' )
57- . click ( 'i[data-id="terminalToggleIcon"]' )
58- . checkElementStyle ( 'div[data-id="terminalToggleMenu"]' , 'height' , '35px' )
59- . assert . not . elementPresent ( 'div[data-id="terminalCli"]' )
60- . click ( 'i[data-id="terminalToggleIcon"]' )
61- . waitForElementVisible ( 'div[data-id="terminalCli"]' )
57+ . click ( 'i[data-id="hideBottomPanel"]' )
58+ . waitForElementNotVisible ( 'div[data-id="terminalCli"]' )
6259 } ,
6360
6461 'Switch Tabs using tabs icon' : function ( browser : NightwatchBrowser ) {
You can’t perform that action at this time.
0 commit comments