From c5e49a605591748f7dfc49427f1a47afca5ac400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Ro=C5=BCnawski?= Date: Fri, 8 Mar 2024 11:28:57 +0100 Subject: [PATCH] Add missing tags for sip tests --- test/jellyfish/room_test.exs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/jellyfish/room_test.exs b/test/jellyfish/room_test.exs index 0ee7f10..5536228 100644 --- a/test/jellyfish/room_test.exs +++ b/test/jellyfish/room_test.exs @@ -237,6 +237,7 @@ defmodule Jellyfish.RoomTest do assert %Component{type: Component.RTSP, properties: @rtsp_properties} = component end + @tag :sip_component test "when request is valid with opts - sip", %{client: client, room_id: room_id} do assert {:ok, component} = Room.add_component(client, room_id, @sip_component_opts) assert %Component{type: Component.SIP, properties: @sip_properties} = component @@ -453,6 +454,8 @@ defmodule Jellyfish.RoomTest do describe "Room.dial/4" do setup [:create_room] + @describetag :sip_component + test "when request is valid", %{client: client, room_id: room_id} do assert {:ok, %Component{id: component_id, properties: @sip_properties}} = Room.add_component(client, room_id, @sip_component_opts)