We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08e03b commit 330ce4eCopy full SHA for 330ce4e
v-next/hardhat-utils/test/request.ts
@@ -542,7 +542,7 @@ describe("Requests util", () => {
542
mockPool.intercept(baseInterceptorOptions).reply(200, "file content");
543
await download(url, destination, undefined, mockPool);
544
545
- assert.ok(exists(destination), "Should create the file");
+ assert.ok(await exists(destination), "Should create the file");
546
assert.equal(await readUtf8File(destination), "file content");
547
});
548
0 commit comments