hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
12 lines • 607 B
JavaScript
import { resolveSolidityTestUserConfig, validateSolidityTestUserConfig, } from "../config.js";
export default async () => {
const handlers = {
validateUserConfig: async (userConfig) => validateSolidityTestUserConfig(userConfig),
resolveUserConfig: async (userConfig, resolveConfigurationVariable, next) => {
const resolvedConfig = await next(userConfig, resolveConfigurationVariable);
return await resolveSolidityTestUserConfig(userConfig, resolvedConfig, resolveConfigurationVariable);
},
};
return handlers;
};
//# sourceMappingURL=config.js.map