We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e815f5 + ac5c280 commit 1e591a6Copy full SHA for 1e591a6
v-next/hardhat/src/internal/builtin-plugins/test/task-action.ts
@@ -16,7 +16,11 @@ const runAllTests: NewTaskActionFunction<TestActionArguments> = async (
16
}
17
18
for (const subtask of thisTask.subtasks.values()) {
19
- await subtask.run({ noCompile: true });
+ if (subtask.options.has("noCompile")) {
20
+ await subtask.run({ noCompile: true });
21
+ } else {
22
+ await subtask.run({});
23
+ }
24
25
26
if (process.exitCode !== undefined && process.exitCode !== 0) {
0 commit comments