Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
129c5ceb
Commit
129c5ceb
authored
Jun 30, 2021
by
lianahus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style of header
parent
8500806c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
10 deletions
+19
-10
init.ts
apps/remix-ide-e2e/src/helpers/init.ts
+2
-0
pluginManager.spec.ts
apps/remix-ide-e2e/src/tests/pluginManager.spec.ts
+1
-1
verticalIconsPanel.spec.ts
apps/remix-ide-e2e/src/tests/verticalIconsPanel.spec.ts
+1
-0
walkthroughService.js
apps/remix-ide/src/walkthroughService.js
+15
-9
No files found.
apps/remix-ide-e2e/src/helpers/init.ts
View file @
129c5ceb
...
...
@@ -7,6 +7,8 @@ export default function (browser: NightwatchBrowser, callback: VoidFunction, url
.
url
(
url
||
'http://127.0.0.1:8080'
)
.
pause
(
5000
)
.
switchBrowserTab
(
0
)
.
waitForElementVisible
(
'[id="remixTourSkipbtn"]'
)
.
click
(
'[id="remixTourSkipbtn"]'
)
.
fullscreenWindow
(()
=>
{
if
(
preloadPlugins
)
{
initModules
(
browser
,
()
=>
{
...
...
apps/remix-ide-e2e/src/tests/pluginManager.spec.ts
View file @
129c5ceb
...
...
@@ -114,7 +114,7 @@ module.exports = {
.
click
(
'*[data-id="localPluginRadioButtonsidePanel"]'
)
.
click
(
'*[data-id="modalDialogModalFooter"]'
)
.
modalFooterOKClick
()
.
waitForElementVisible
(
'*[data-id="pluginManagerComponentDeactivateButtonremixIde"]'
,
6
0000
)
.
waitForElementVisible
(
'*[data-id="pluginManagerComponentDeactivateButtonremixIde"]'
,
10
0000
)
},
'Should display error message for creating already existing plugin'
:
function
(
browser
:
NightwatchBrowser
)
{
...
...
apps/remix-ide-e2e/src/tests/verticalIconsPanel.spec.ts
View file @
129c5ceb
...
...
@@ -22,6 +22,7 @@ module.exports = {
'Checks vertical icons panel contex menu deactivate'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
waitForElementVisible
(
'div[data-id="remixIdeIconPanel"]'
,
10000
)
.
waitForElementVisible
(
'*[data-id="verticalIconsKinddebugger"]'
,
7000
)
.
pause
(
5000
)
.
rightClick
(
'[data-id="verticalIconsKinddebugger"]'
)
.
click
(
'*[id="menuitemdeactivate"]'
)
.
click
(
'*[data-id="verticalIconsKindsettings"]'
)
...
...
apps/remix-ide/src/walkthroughService.js
View file @
129c5ceb
...
...
@@ -18,7 +18,7 @@ export class WalkthroughService {
{
element
:
document
.
querySelector
(
'#compileIcons'
),
title
:
'Solidity Compiler'
,
intro
:
'Having selected a .sol file in the File Explorers(the icon above), compile it with the Solidity Compiler.'
,
intro
:
'Having selected a .sol file in the File Explorers
(the icon above), compile it with the Solidity Compiler.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
},
...
...
@@ -28,16 +28,22 @@ export class WalkthroughService {
intro
:
'Choose a chain, deploy a contract and play with your functions.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
},
{
title
:
'The plugins world'
,
element
:
document
.
querySelector
(
'#settingsIcons'
),
intro
:
'Explore more plugins and manage permissions.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
,
doneLabel
:
'Done!'
}
]
}).
onafterchange
((
targetElement
)
=>
{
const
header
=
document
.
getElementsByClassName
(
'introjs-tooltip-header'
)[
0
]
if
(
header
)
{
header
.
classList
.
add
(
'd-flex'
)
header
.
classList
.
add
(
'justify-content-between'
)
header
.
classList
.
add
(
'text-nowrap'
)
header
.
classList
.
add
(
'pr-0'
)
}
const
skipbutton
=
document
.
getElementsByClassName
(
'introjs-skipbutton'
)[
0
]
if
(
skipbutton
)
{
skipbutton
.
classList
.
add
(
'ml-3'
)
skipbutton
.
classList
.
add
(
'text-decoration-none'
)
skipbutton
.
id
=
'remixTourSkipbtn'
}
}).
start
()
localStorage
.
setItem
(
'hadTour_initial'
,
true
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment