We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd1a879 commit 9636be4Copy full SHA for 9636be4
v-next/hardhat/test/types/global-options.ts
@@ -0,0 +1,19 @@
1
+import type { GlobalOptions } from "@ignored/hardhat-vnext/types/global-options";
2
+
3
+import { describe, it } from "node:test";
4
5
+import { expectTypeOf } from "expect-type";
6
7
+describe("types/global-options", () => {
8
+ describe("GlobalOptions", () => {
9
+ it("should be augmented with the builtin global options", () => {
10
+ expectTypeOf<GlobalOptions>().toEqualTypeOf<{
11
+ configPath: string;
12
+ help: boolean;
13
+ init: boolean;
14
+ showStackTraces: boolean;
15
+ version: boolean;
16
+ }>();
17
+ });
18
19
+});
0 commit comments