Add contract-artifacts to circleci

This commit is contained in:
Jacob Evans 2019-04-01 19:08:12 +01:00
parent fa1db64a8e
commit 669578a926
No known key found for this signature in database
GPG Key ID: 2036DA2ADDFB0842
3 changed files with 3 additions and 1 deletions

View File

@ -119,6 +119,7 @@ jobs:
- repo-{{ .Environment.CIRCLE_SHA1 }}
- run: yarn wsrun test:circleci @0x/contracts-test-utils
- run: yarn wsrun test:circleci @0x/abi-gen
- run: yarn wsrun test:circleci @0x/contract-artifacts
- run: yarn wsrun test:circleci @0x/assert
- run: yarn wsrun test:circleci @0x/base-contract
- run: yarn wsrun test:circleci @0x/connect

View File

@ -13,6 +13,7 @@
"build": "yarn tsc -b",
"build:ci": "yarn build",
"test": "yarn run_mocha",
"test:circleci": "yarn test",
"run_mocha": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --bail --exit",
"clean": "shx rm -rf lib"
},

View File

@ -30,6 +30,6 @@ describe('Contract Artifacts', () => {
}
}
}
expect(forbiddenPropertiesByArtifact).to.be.eq({});
expect(forbiddenPropertiesByArtifact).to.eql({});
});
});