We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d0bc46 commit c856215Copy full SHA for c856215
v-next/hardhat-node-test-runner/src/task-action.ts
@@ -45,7 +45,7 @@ async function hasTypescriptConfig(): Promise<boolean> {
45
return hhConfig !== undefined;
46
}
47
48
-const runScriptWithHardhat: NewTaskActionFunction<TestActionArguments> = async (
+const testWithHardhat: NewTaskActionFunction<TestActionArguments> = async (
49
{ testFiles, only },
50
hre,
51
) => {
@@ -74,4 +74,4 @@ const runScriptWithHardhat: NewTaskActionFunction<TestActionArguments> = async (
74
run({ files, only }).compose(hardhatTestReporter).pipe(process.stdout);
75
};
76
77
-export default runScriptWithHardhat;
+export default testWithHardhat;
0 commit comments