Add fuzz tests for Math.sqrt & Math.logX using Foundry (#3676)
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
7
hardhat/skip-foundry-tests.js
Normal file
7
hardhat/skip-foundry-tests.js
Normal file
@ -0,0 +1,7 @@
|
||||
const { subtask } = require('hardhat/config');
|
||||
const { TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS } = require('hardhat/builtin-tasks/task-names');
|
||||
|
||||
subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS)
|
||||
.setAction(async (_, __, runSuper) =>
|
||||
(await runSuper()).filter((path) => !path.endsWith('.t.sol')),
|
||||
);
|
||||
Reference in New Issue
Block a user