Unverified Commit e6e4b10a authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1177 from ethereum/testremixdebugger

activate remix-debugger testing
parents fa8190f9 55808be2
......@@ -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
......
......@@ -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
......
'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
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment