summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-09-26 18:49:57 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-09-26 18:49:57 +0700
commit75290cbfbd0f93cf3ecec5f44c4624b8c8601c51 (patch)
tree83a844996f91480c4d6701d4b379f0a90ad2fcb1 /test
parent6abe12dceda8d0d32878208987a9631d5d546a3d (diff)
downloadpleroma-75290cbfbd0f93cf3ecec5f44c4624b8c8601c51.tar.gz
pleroma-75290cbfbd0f93cf3ecec5f44c4624b8c8601c51.zip
Add Pleroma.JobQueueMonitor
Diffstat (limited to 'test')
-rw-r--r--test/healthcheck_test.exs9
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