X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=test%2Fsupport%2Fdata_case.ex;h=ba8848952e11b0d7e7e7895f05b8099194a7177f;hb=a42880040574701000470fc1c2dbd6f7242c1a06;hp=f3d98e7e3173f46bf19bbd7b2c3235eaa2b0291d;hpb=b6b748d3e7f3383303a2fcccb17b7b0f7054100f;p=akkoma diff --git a/test/support/data_case.ex b/test/support/data_case.ex index f3d98e7e3..ba8848952 100644 --- a/test/support/data_case.ex +++ b/test/support/data_case.ex @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2018 Pleroma Authors +# Copyright © 2017-2020 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.DataCase do @@ -39,6 +39,14 @@ defmodule Pleroma.DataCase do Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()}) end + if tags[:needs_streamer] do + start_supervised(%{ + id: Pleroma.Web.Streamer.registry(), + start: + {Registry, :start_link, [[keys: :duplicate, name: Pleroma.Web.Streamer.registry()]]} + }) + end + :ok end