add comments for guest mode

Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
aramissennyeydd
2024-02-19 22:20:11 -05:00
parent cfdc5e7d38
commit 3e88c88312
@@ -58,8 +58,10 @@ async function fuzz(opts: OptionValues) {
args.push('--workers', opts.workers);
if (opts.useGuest) {
// TODO: @sennyeya This should leverage the `guest-provider` if available.
args.push('--header', `Authorization: Basic guest`);
} else {
// This is just here to prevent any "Invalid JWT" errors during execution.
args.push('--header', `Authorization: Basic test`);
}