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
ed247288
Commit
ed247288
authored
Jul 26, 2017
by
yann300
Committed by
GitHub
Jul 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #638 from ethereum/fixIEtest
add IE test
parents
f681c136
c9b4b6d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
browser_tests.sh
ci/browser_tests.sh
+2
-2
tabbed-menu.js
src/app/tabbed-menu.js
+4
-3
sharedFolderExplorer.js
test-browser/tests/sharedFolderExplorer.js
+3
-2
No files found.
ci/browser_tests.sh
View file @
ed247288
...
...
@@ -41,8 +41,8 @@ done
npm run nightwatch_remote_chrome
||
TEST_EXITCODE
=
1
npm run nightwatch_remote_firefox
||
TEST_EXITCODE
=
1
npm run nightwatch_remote_safari
||
TEST_EXITCODE
=
1
#
npm run nightwatch_remote_ie || TEST_EXITCODE=1
# npm run nightwatch_remote_parallel || TEST_EXITCODE=1
npm run nightwatch_remote_ie
||
TEST_EXITCODE
=
1
# npm run nightwatch_remote_parallel || TEST_EXITCODE=1
=> cannot run in parallel because of remixd
node ci/sauceDisconnect.js
"
$SAUCECONNECT_USERNAME
"
"
$SAUCECONNECT_ACCESSKEY
"
"
$SAUCECONNECT_JOBIDENTIFIER
"
...
...
src/app/tabbed-menu.js
View file @
ed247288
...
...
@@ -4,9 +4,10 @@ var loadingSpinner = require('./loading-spinner')
module
.
exports
=
tabbedMenu
function
tabbedMenu
(
container
,
appAPI
,
events
,
opts
)
{
container
.
querySelectorAll
(
'li'
).
forEach
(
function
(
el
)
{
el
.
onclick
=
function
(
ev
)
{
selectTab
(
this
)
}
})
var
lis
=
container
.
querySelectorAll
(
'li'
)
for
(
var
li
=
0
;
li
<
lis
.
length
;
++
li
)
{
lis
[
li
].
onclick
=
function
(
ev
)
{
selectTab
(
this
)
}
}
events
.
app
.
register
(
'debuggingRequested'
,
()
=>
{
selectTab
(
container
.
querySelector
(
'li.debugView'
))
...
...
test-browser/tests/sharedFolderExplorer.js
View file @
ed247288
...
...
@@ -23,8 +23,9 @@ module.exports = {
}
function
runTests
(
browser
,
testData
)
{
if
(
browser
.
options
.
desiredCapabilities
.
browserName
===
'safari'
)
{
console
.
log
(
'don
\'
t run remixd test for safari: sauce labs doesn
\'
t seems to handle websocket'
)
var
browserName
=
browser
.
options
.
desiredCapabilities
.
browserName
if
(
browserName
===
'safari'
||
browserName
===
'internet explorer'
)
{
console
.
log
(
'do not run remixd test for '
+
browserName
+
': sauce labs doesn
\'
t seems to handle websocket'
)
browser
.
end
()
return
}
...
...
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