move foundry.toml

This commit is contained in:
Jacob Evans
2022-02-02 08:30:35 +10:00
parent 7e84dc7bea
commit 4d94588203
4 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
[default]
src = 'src'
test = 'test'
out = 'out'
libs = ['lib']
remappings = ['ds-test/=lib/ds-test/src/']

View File

@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.6;
import "../../lib/ds-test/src/test.sol";
import "../lib/ds-test/src/test.sol";
contract TestBase is
DSTest

View File

@@ -2,7 +2,7 @@
pragma solidity ^0.6;
import "./TestBase.sol";
import "../ERC20BridgeSampler.sol";
import "../src/ERC20BridgeSampler.sol";
contract UniswapV2SamplerTest is
TestBase

View File

@@ -1,6 +0,0 @@
[default]
src = 'contracts/src'
test = 'contracts/test'
out = 'out'
libs = ['contracts/lib']
remappings = ['ds-test/=contracts/lib/ds-test/src/']