Skip to content

Commit 03c38df

Browse files
committed
e2e fix
1 parent d481020 commit 03c38df

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

apps/remix-ide-e2e/src/tests/editor.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ module.exports = {
110110
.executeScriptInTerminal('remix.exeCurrent()')
111111
.scrollToLine(33)
112112
.waitForElementPresent('.highlightLine34', 60000)
113-
.checkElementStyle('.highlightLine34', 'background-color', 'rgba(0, 0, 0, 0)')
113+
.checkElementStyle('.highlightLine34', 'background-color', 'rgb(52, 152, 219)')
114114
.scrollToLine(40)
115115
.waitForElementPresent('.highlightLine41', 60000)
116-
.checkElementStyle('.highlightLine41', 'background-color', 'rgba(0, 0, 0, 0)')
116+
.checkElementStyle('.highlightLine41', 'background-color', 'rgb(52, 152, 219)')
117117
.scrollToLine(50)
118118
.waitForElementPresent('.highlightLine51', 60000)
119-
.checkElementStyle('.highlightLine51', 'background-color', 'rgba(0, 0, 0, 0)')
119+
.checkElementStyle('.highlightLine51', 'background-color', 'rgb(52, 152, 219)')
120120
},
121121

122122
'Should remove 1 highlight from source code #group1':
@@ -132,8 +132,8 @@ module.exports = {
132132
.waitForElementVisible('li[data-id="treeViewLitreeViewItemcontracts/3_Ballot.sol"]')
133133
.click('li[data-id="treeViewLitreeViewItemcontracts/3_Ballot.sol"]')
134134
.waitForElementNotPresent('.highlightLine33', 60000)
135-
.checkElementStyle('.highlightLine41', 'background-color', 'rgba(0, 0, 0, 0)')
136-
.checkElementStyle('.highlightLine51', 'background-color', 'rgba(0, 0, 0, 0)')
135+
.checkElementStyle('.highlightLine41', 'background-color', 'rgb(52, 152, 219)')
136+
.checkElementStyle('.highlightLine51', 'background-color', 'rgb(52, 152, 219)')
137137
},
138138

139139
'Should remove all highlights from source code #group1': function (browser: NightwatchBrowser) {

libs/remix-ui/debugger-ui/src/lib/button-navigator/button-navigator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const ButtonNavigation = ({
139139
stepIntoForward && stepIntoForward()
140140
}}
141141
disabled={state.intoForwardDisabled}
142-
style={{ pointerEvents: 'none'}}
142+
style={{ pointerEvents: 'none' }}
143143
>
144144
<span className="fas fa-level-down-alt"></span>
145145
</button>
@@ -166,7 +166,7 @@ export const ButtonNavigation = ({
166166
stepOverForward && stepOverForward()
167167
}}
168168
disabled={state.overForwardDisabled}
169-
style={{ pointerEvents: 'none'}}
169+
style={{ pointerEvents: 'none' }}
170170
>
171171
<span className="fas fa-share"></span>
172172
</button>

libs/remix-ui/debugger-ui/src/lib/tx-browser/tx-browser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const TxBrowser = ({ requestDebug, updateTxNumberFlag, unloadRequested, t
6363
onClick={handleSubmit}
6464
data-id="debuggerTransactionStartButton"
6565
disabled={!state.txNumber || !state.isTxNumberValid}
66-
style={{ pointerEvents: 'none'}}
66+
style={{ pointerEvents: 'none' }}
6767
>
6868
<span>
6969
<FormattedMessage id={`debugger.${debugging ? 'stopDebugging' : 'startDebugging'}`} />

libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
104104
>
105105
<label
106106
className='m-0 p-0 text-uppercase align-items-left fw-bold text-truncate overflow-hidden whitespace-nowrap'
107-
style={{ fontSize: '11px', lineHeight: '12px'}}
107+
style={{ fontSize: '11px', lineHeight: '12px' }}
108108
>{ props.title }
109109
</label>
110110
</CustomTooltip>

0 commit comments

Comments
 (0)