Skip to content

Commit

Permalink
set test contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Feb 8, 2018
1 parent b25d7ae commit 63d76c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
9 changes: 1 addition & 8 deletions ci/browser_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@ set -e

setupRemixd () {
mkdir remixdSharedfolder
cd remixdSharedfolder
echo "contract test1 { function get () returns (uint) { return 8; }}" > contract1.sol
echo "contract test2 { function get () returns (uint) { return 9; }}" > contract2.sol
mkdir folder1
cd folder1
echo "contract test1 { function get () returns (uint) { return 10; }}" > contract1.sol
echo "contract test2 { function get () returns (uint) { return 11; }}" > contract2.sol
cd ..
cd contracts
echo 'sharing folder: '
echo $PWD
node ../node_modules/remixd/src/main.js -s $PWD &
Expand Down
1 change: 1 addition & 0 deletions contracts/contract1.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contract test1 { function get () returns (uint) { return 8; }}
1 change: 1 addition & 0 deletions contracts/contract2.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contract test2 { function get () returns (uint) { return 9; }}
1 change: 1 addition & 0 deletions contracts/folder1/contract1.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contract test1 { function get () returns (uint) { return 10; }}
1 change: 1 addition & 0 deletions contracts/folder1/contract2.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contract test2 { function get () returns (uint) { return 11; }}

0 comments on commit 63d76c7

Please sign in to comment.