We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af31985 commit 7876d50Copy full SHA for 7876d50
src/helpers/auth.helper.ts
@@ -62,6 +62,10 @@ export const login = async (
62
return false;
63
}
64
65
+ if (authWarning?.length > 0) {
66
+ return false;
67
+ }
68
+
69
const hasCaptcha = !!(await page.$(`form.cvf-widget-form-captcha`));
70
71
if (hasCaptcha) {
src/hooks/prerun/prerun.ts
@@ -1,7 +1,7 @@
1
-import { Hook } from "@oclif/core";
+// import { Hook } from "@oclif/core";
2
3
-const hook: Hook<`prerun`> = async function (opts) {
4
- // process.stdout.write(`example hook running ${opts.Command.id}\n`);
5
-};
+// const hook: Hook<`prerun`> = async function (opts) {
+// // process.stdout.write(`example hook running ${opts.Command.id}\n`);
+// };
6
7
-export default hook;
+// export default hook;
0 commit comments