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
8143f0f5
Commit
8143f0f5
authored
Sep 16, 2021
by
ioedeveloper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed failing tests
parent
99c8373e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
pluginManager.ts
apps/remix-ide-e2e/src/tests/pluginManager.ts
+5
-2
package.json
package.json
+1
-1
No files found.
apps/remix-ide-e2e/src/tests/pluginManager.
spec.
ts
→
apps/remix-ide-e2e/src/tests/pluginManager.ts
View file @
8143f0f5
...
...
@@ -182,7 +182,10 @@ module.exports = {
},
'Should load back installed plugins after reload'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
waitForElementVisible
(
'*[data-id="pluginManagerComponentPluginManager"]'
)
browser
.
waitForElementVisible
(
'*[data-id="remixIdeSidePanel"]'
)
.
click
(
'*[plugin="pluginManager"]'
)
.
waitForElementVisible
(
'*[data-id="pluginManagerComponentPluginManager"]'
)
.
getInstalledPlugins
((
plugins
)
=>
{
browser
.
refresh
()
.
waitForElementVisible
(
'*[data-id="remixIdeSidePanel"]'
)
...
...
@@ -190,7 +193,7 @@ module.exports = {
.
perform
((
done
)
=>
{
// const filtered = plugins.filter(plugin => plugin !== 'testremixIde') // remove this when localplugin bug is resolved
plugins
.
forEach
(
plugin
=>
{
if
(
plugin
!==
testData
.
pluginName
&&
plugin
!==
'testremixIde'
)
{
if
(
(
plugin
!==
testData
.
pluginName
)
&&
plugin
!==
localPluginData
.
pluginName
)
{
browser
.
waitForElementVisible
(
`[plugin="
${
plugin
}
"`
)
}
})
...
...
package.json
View file @
8143f0f5
...
...
@@ -74,7 +74,7 @@
"nightwatch_local_gist"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/gist.spec.js --env=chrome"
,
"nightwatch_local_workspace"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/workspace.test.js --env=chrome"
,
"nightwatch_local_defaultLayout"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/defaultLayout.test.js --env=chrome"
,
"nightwatch_local_pluginManager"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/pluginManager.
spec.
js --env=chrome"
,
"nightwatch_local_pluginManager"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/pluginManager.js --env=chrome"
,
"nightwatch_local_publishContract"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/publishContract.test.js --env=chrome"
,
"nightwatch_local_generalSettings"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/generalSettings.test.js --env=chrome"
,
"nightwatch_local_fileExplorer"
:
"npm run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/fileExplorer.test.js --env=chrome"
,
...
...
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