Skip to content
Snippets Groups Projects
Commit e8537208 authored by vaartis's avatar vaartis
Browse files

Add a captcha mock for tests

parent 98e10c0d
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,11 @@ config :pleroma, Pleroma.Web.Endpoint,
http: [port: 4001],
server: false
# Disable captha for tests
config :pleroma, Pleroma.Captcha,
enabled: true,
method: Pleroma.Captcha.Mock # A fake captcha service for tests
# Print only warnings and errors during test
config :logger, level: :warn
......
defmodule Pleroma.Captcha.Mock do
alias Pleroma.Captcha.Service
@behaviour Service
@impl Service
def new(), do: %{type: :mock}
@impl Service
def validate(_token, _captcha), do: true
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment