Unneeded console.log

This commit is contained in:
Ken Sternberg
2024-11-01 12:46:24 -07:00
parent fb40ee72a5
commit d76e3c8023

View File

@ -67,7 +67,6 @@ async function fillOutTheProviderAndCommit(provider: TestSequence) {
for await (const field of wizardProvider) {
const thefunc = field[0];
const args = field.slice(1);
console.log(`Running ${args.join(", ")}`);
// @ts-expect-error "This is a pretty alien call; I'm not surprised Typescript hates it."
await thefunc.apply($, args);
}