Skip to content

Commit 19aed17

Browse files
chevdoraxic
authored andcommitted
Add solcjs output to .gitignore
1 parent 53a2a7c commit 19aed17

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,8 @@ test_DAO_Token_sol_TokenInterface.abi
3434
test_DAO_Token_sol_TokenInterface.bin
3535
test_DAO_Token_sol_tokenRecipient.abi
3636
test_DAO_Token_sol_tokenRecipient.bin
37+
38+
bin
39+
out
40+
*.bin
41+
*.abi

test/package.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ tape('Compilation', function (t) {
3434
}
3535
st.end();
3636
});
37+
3738
t.test('multiple files can be compiled', function (st) {
3839
var input = {
3940
'lib.sol': 'library L { function f() returns (uint) { return 7; } }',
@@ -49,6 +50,7 @@ tape('Compilation', function (t) {
4950
st.ok(output.contracts['lib.sol:L'].bytecode.length > 0);
5051
st.end();
5152
});
53+
5254
t.test('lazy-loading callback works', function (st) {
5355
var input = {
5456
'cont.sol': 'import "lib.sol"; contract x { function g() { L.f(); } }'
@@ -215,6 +217,7 @@ tape('Compilation', function (t) {
215217
st.end();
216218
});
217219
});
220+
218221
tape('Loading Legacy Versions', function (t) {
219222
t.test('loading remote version - development snapshot', function (st) {
220223
// getting the development snapshot

0 commit comments

Comments
 (0)