diff options
author | 2023-01-09 08:28:37 -0800 | |
---|---|---|
committer | 2023-01-09 08:28:37 -0800 | |
commit | 30b10d5fb1aeb94c7c19bb8d8d732f61202609cd (patch) | |
tree | 4ffbf066213e6afd2f560e1fab98b1f14b7a2168 /src/cli.zig | |
parent | ca58556c541e3dd7f8f5c51350c85bbd3e11eed8 (diff) | |
download | bun-30b10d5fb1aeb94c7c19bb8d8d732f61202609cd.tar.gz bun-30b10d5fb1aeb94c7c19bb8d8d732f61202609cd.tar.zst bun-30b10d5fb1aeb94c7c19bb8d8d732f61202609cd.zip |
[bun:test] Implement `test.root` configuration option
Diffstat (limited to 'src/cli.zig')
-rw-r--r-- | src/cli.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli.zig b/src/cli.zig index f18ce68ee..34677308d 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -838,6 +838,8 @@ pub const Command = struct { macros: ?MacroMap = null, editor: string = "", package_bundle_map: bun.StringArrayHashMapUnmanaged(options.BundlePackage) = bun.StringArrayHashMapUnmanaged(options.BundlePackage){}, + + test_directory: []const u8 = "", }; pub const Context = struct { |