diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-26 18:49:57 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-26 18:49:57 +0700 |
commit | 75290cbfbd0f93cf3ecec5f44c4624b8c8601c51 (patch) | |
tree | 83a844996f91480c4d6701d4b379f0a90ad2fcb1 /test | |
parent | 6abe12dceda8d0d32878208987a9631d5d546a3d (diff) | |
download | pleroma-75290cbfbd0f93cf3ecec5f44c4624b8c8601c51.tar.gz pleroma-75290cbfbd0f93cf3ecec5f44c4624b8c8601c51.zip |
Add Pleroma.JobQueueMonitor
Diffstat (limited to 'test')
-rw-r--r-- | test/healthcheck_test.exs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/healthcheck_test.exs b/test/healthcheck_test.exs index 6bb8d5b7f..66d5026ff 100644 --- a/test/healthcheck_test.exs +++ b/test/healthcheck_test.exs @@ -9,7 +9,14 @@ defmodule Pleroma.HealthcheckTest do test "system_info/0" do result = Healthcheck.system_info() |> Map.from_struct() - assert Map.keys(result) == [:active, :healthy, :idle, :memory_used, :pool_size] + assert Map.keys(result) == [ + :active, + :healthy, + :idle, + :job_queue_stats, + :memory_used, + :pool_size + ] end describe "check_health/1" do |