-
Notifications
You must be signed in to change notification settings - Fork 2
Feat/new recaptcha #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Feat/new recaptcha #240
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit
const result = check_recaptcha_params(name, email, launch) | ||
expect(result.status).toBe(500) | ||
}) | ||
test("email", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
Missing padding before test block
const result = check_recaptcha_params(name, email, launch) | ||
expect(result.status).toBe(500) | ||
}) | ||
test("launch", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
Missing padding before test block
const name = "" | ||
const email = "" | ||
const launch = false | ||
describe("Wrong params", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
Enforce lowercase test names
}) | ||
}) | ||
|
||
describe("Right params", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
Enforce lowercase test names
const email = "" | ||
const launch = false | ||
describe("Wrong params", () => { | ||
test("name", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
async is not allowed
const result = check_recaptcha_params(name, email, launch) | ||
expect(result.status).toBe(500) | ||
}) | ||
test("email", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
async is not allowed
const result = check_recaptcha_params(name, email, launch) | ||
expect(result.status).toBe(500) | ||
}) | ||
test("launch", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
async is not allowed
}) | ||
|
||
describe("Right params", () => { | ||
test("name", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reported by reviewdog 🐶
async is not allowed
No description provided.