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
e6e4b10a
Unverified
Commit
e6e4b10a
authored
Mar 21, 2018
by
yann300
Committed by
GitHub
Mar 21, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1177 from ethereum/testremixdebugger
activate remix-debugger testing
parents
fa8190f9
55808be2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
config.yml
.circleci/config.yml
+1
-0
browser_tests.sh
src/app/debugger/remix-debugger/ci/browser_tests.sh
+1
-1
index.js
src/app/debugger/remix-debugger/index.js
+20
-0
No files found.
.circleci/config.yml
View file @
e6e4b10a
...
...
@@ -34,6 +34,7 @@ jobs:
-
/repo/node_modules
-
run
:
npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build
-
run
:
./ci/browser_tests.sh
-
run
:
cd src/app/debugger/remix-debugger && ./ci/browser_tests.sh
# - run: if [ $CIRCLE_BRANCH = 'master' ]; then ./ci/deploy_from_travis_master.sh; fi
# - run: if [ $CIRCLE_BRANCH = 'remix_live' ]; then ./ci/deploy_from_travis_master.sh; fi
...
...
src/app/debugger/remix-debugger/ci/browser_tests.sh
View file @
e6e4b10a
...
...
@@ -19,7 +19,7 @@ SAUCECONNECT_JOBIDENTIFIER="remix_tests_${BUILD_ID}"
SAUCECONNECT_READYFILE
=
"sc.ready"
TEST_EXITCODE
=
0
npm run build
npm
install
&&
npm
run build
npm run serve &
wget
$SAUCECONNECT_URL
...
...
src/app/debugger/remix-debugger/index.js
0 → 100644
View file @
e6e4b10a
'use strict'
var
VMDebugger
=
require
(
'./src/ui/VmDebugger'
)
var
Debugger
=
require
(
'./src/ui/Ethdebugger'
)
if
(
typeof
(
module
)
!==
'undefined'
&&
typeof
(
module
.
exports
)
!==
'undefined'
)
{
module
.
exports
=
modules
()
}
if
(
typeof
(
window
)
!==
'undefined'
)
{
window
.
remix
=
modules
()
}
function
modules
()
{
return
{
ui
:
{
Debugger
:
Debugger
,
VMdebugger
:
VMDebugger
}
}
}
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