0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

fix(cli): re-enable --watch flag for test (#11433)

This commit is contained in:
Casper Beyer 2021-07-18 16:55:25 +08:00 committed by GitHub
parent 44084cd0f9
commit 3d3bb1e65c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1773,6 +1773,7 @@ fn test_parse(flags: &mut Flags, matches: &clap::ArgMatches) {
};
flags.coverage_dir = matches.value_of("coverage").map(String::from);
flags.watch = matches.is_present("watch");
flags.subcommand = DenoSubcommand::Test {
no_run,
doc,