File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
apps/remixdesktop/test/tests/app
libs/remix-ui/home-tab/src/lib Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ module.exports = {
10
10
'clone a repo' : function ( browser : NightwatchBrowser ) {
11
11
browser
12
12
. waitForElementVisible ( '*[data-id="remixIdeIconPanel"]' , 10000 )
13
- . waitForElementVisible ( 'button [data-id="landingPageImportFromGit "]' )
14
- . click ( 'button [data-id="landingPageImportFromGit "]' )
13
+ . waitForElementVisible ( '* [data-id="cloneFromGitButton "]' )
14
+ . click ( '* [data-id="cloneFromGitButton "]' )
15
15
. pause ( 1000 )
16
16
. waitForElementVisible ( '[data-id="fileSystemModalDialogModalBody-react"]' )
17
17
. click ( '[data-id="fileSystemModalDialogModalBody-react"]' )
@@ -22,8 +22,8 @@ module.exports = {
22
22
. windowHandles ( function ( result ) {
23
23
console . log ( result . value )
24
24
browser . switchWindow ( result . value [ 1 ] )
25
- . waitForElementVisible ( '*[data-id="treeViewLitreeViewItem.git"]' )
25
+ . waitForElementVisible ( '*[data-id="treeViewLitreeViewItem.git"]' )
26
26
} )
27
27
. end ( )
28
28
}
29
- }
29
+ }
Original file line number Diff line number Diff line change @@ -91,7 +91,13 @@ async function setupHardhatProject(): Promise<void> {
91
91
}
92
92
}
93
93
94
+ // because error [email protected] : The engine "node" is incompatible with this module. Expected version ">= 20.19.0". Got "20.16.0"
95
+ // we need to disable the test
94
96
97
+ module . exports = { }
98
+
99
+ /*
95
100
module.exports = {
96
101
...process.platform.startsWith('win')?{}:tests
97
- }
102
+ }
103
+ */
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const RemixUiHomeTab = (props: RemixUiHomeTabProps) => {
31
31
const { plugin } = props
32
32
33
33
const [ state , setState ] = useState < {
34
- themeQuality : { filter : string ; name : string }
34
+ themeQuality : { filter : string ; name : string }
35
35
} > ( {
36
36
themeQuality : themes . light
37
37
} )
@@ -85,8 +85,8 @@ export const RemixUiHomeTab = (props: RemixUiHomeTabProps) => {
85
85
< div className = "container-fluid" >
86
86
< div className = "row" >
87
87
< div className = "d-flex w-100 m-3 justify-content-end" >
88
- < button className = "btn btn-secondary btn-md mr-3" onClick = { startLearnEth } > < i className = "fa-solid fa-book mr-1" > </ i > < FormattedMessage id = "home.startLearning" /> </ button >
89
- < button className = "btn btn-primary btn-md mr-2" onClick = { openTemplateSelection } > < i className = "fa-solid fa-plus mr-1" > </ i > < FormattedMessage id = "home.createNewWorkspace" /> </ button >
88
+ < button className = "btn btn-secondary btn-md mr-3" onClick = { startLearnEth } > < i className = "fa-solid fa-book mr-1" > </ i > < FormattedMessage id = "home.startLearning" /> </ button >
89
+ < button data-id = "landingPageImportFromTemplate" className = "btn btn-primary btn-md mr-2" onClick = { openTemplateSelection } > < i className = "fa-solid fa-plus mr-1" > </ i > < FormattedMessage id = "home.createNewWorkspace" /> </ button >
90
90
</ div >
91
91
< div className = "col-lg-8 col-xl-5 col-sm-12 mb-4" >
92
92
< HomeTabTitle />
You can’t perform that action at this time.
0 commit comments