Commit f42d5711 authored by Mark Tyneway's avatar Mark Tyneway

fix: bedrock itests

parent bb1d159a
artifacts artifacts
cache cache
\ No newline at end of file forge-artifacts
[default]
src = 'contracts'
out = 'forge-artifacts'
optimizer = true
optimizer_runs = 999999
extra_output = ['devdoc', 'userdoc', 'metadata', 'storageLayout']
bytecode_hash = "none"
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "yarn lint:check --fix", "lint:fix": "yarn lint:check --fix",
"lint:check": "eslint . --max-warnings=0", "lint:check": "eslint . --max-warnings=0",
"build": "forge build --root . -c contracts -o artifacts", "build:contracts": "forge build",
"test": "echo 'no unit tests'", "test": "echo 'no unit tests'",
"test:actor": "IS_LIVE_NETWORK=true ts-node actor-tests/lib/runner.ts", "test:actor": "IS_LIVE_NETWORK=true ts-node actor-tests/lib/runner.ts",
"test:integration:live": "NO_NETWORK=true IS_LIVE_NETWORK=true hardhat --network optimism test", "test:integration:live": "NO_NETWORK=true IS_LIVE_NETWORK=true hardhat --network optimism test",
......
...@@ -5,8 +5,8 @@ import { awaitCondition } from '@eth-optimism/core-utils' ...@@ -5,8 +5,8 @@ import { awaitCondition } from '@eth-optimism/core-utils'
/* Imports: Internal */ /* Imports: Internal */
import { defaultTransactionFactory } from './shared/utils' import { defaultTransactionFactory } from './shared/utils'
import env from './shared/env' import env from './shared/env'
import counterArtifact from '../artifacts/Counter.sol/Counter.json' import counterArtifact from '../forge-artifacts/Counter.sol/Counter.json'
import multiDepositorArtifact from '../artifacts/MultiDepositor.sol/MultiDepositor.json' import multiDepositorArtifact from '../forge-artifacts/MultiDepositor.sol/MultiDepositor.json'
describe('Deposits', () => { describe('Deposits', () => {
let portal: Contract let portal: Contract
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment