Skip to content

Commit

Permalink
circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
shahafn committed Jul 21, 2021
1 parent 7a741e2 commit 7a0688c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"prepublish": "yarn prepare",
"scripts": {
"test": "yarn prepare && yarn lerna-lint && yarn lerna-run-test-with-testrpc",
"ganache": "ganache-cli --chainId 1337 --hardfork 'istanbul' --gasLimit 120000000 --defaultBalanceEther 1000 --deterministic --keepAliveTimeout 2147483647",
"ganache": "ganache-cli --chainId 1337 --hardfork 'istanbul' --gasLimit 120000000 --defaultBalanceEther 1000 --deterministic --keepAliveTimeout 2147483647 --port 8544",
"postinstall": "patch-package",
"prepare": "yarn lerna-rm-dist && yarn lerna-typechain-generate && yarn extract_abi && yarn lerna-tsc && yarn lerna-chmod-commands",
"extract_abi": "./scripts/extract_abi.js",
Expand Down
1 change: 0 additions & 1 deletion packages/dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"tsc": "tsc",
"truffle-compile": "truffle compile",
"lint": "eslint -f unix .",
"test": "lerna run tsc && truffle --compile-all --network npmtest test",
"truffle-test": "truffle test --compile-all ",
"test1": "truffle --network npmtest test",
"rm-dist": "rm -rf tsconfig.tsbuildinfo dist build"
Expand Down
2 changes: 1 addition & 1 deletion packages/paymasters/test/HashcashPaymaster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const HashcashPaymaster = artifacts.require('HashcashPaymaster')
const SampleRecipient = artifacts.require('SampleRecipient')
const IRelayHub = artifacts.require('IRelayHub')

contract('HashcashPaymaster', ([from]) => {
contract.only('HashcashPaymaster', ([from]) => {
let pm: HashcashPaymasterInstance
let s: SampleRecipientInstance
let gsnConfig: Partial<GSNConfig>
Expand Down

0 comments on commit 7a0688c

Please sign in to comment.