Skip to content

Commit

Permalink
Merge pull request #63 from gnosis/indie-tests
Browse files Browse the repository at this point in the history
More independent test cases
  • Loading branch information
cag authored Aug 2, 2019
2 parents ff22b35 + ce121dc commit c069330
Show file tree
Hide file tree
Showing 5 changed files with 900 additions and 2,182 deletions.
12 changes: 11 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"@gnosis.pm/safe-contracts": "github:gnosis/safe-contracts",
"@gnosis.pm/truffle-nice-tools": "^1.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/ERC1155.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { ZERO_ADDRESS } = constants;
const { shouldBehaveLikeERC1155 } = require("./ERC1155.behavior");
const ERC1155Mock = artifacts.require("ERC1155Mock");

contract("ERC1155", function([, creator, tokenOwner, ...accounts]) {
contract.skip("ERC1155", function([, creator, tokenOwner, ...accounts]) {
beforeEach(async function() {
this.token = await ERC1155Mock.new({ from: creator });
});
Expand Down
Loading

0 comments on commit c069330

Please sign in to comment.