mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-25 17:30:59 +00:00
TODO
This commit is contained in:
parent
803f0b52cc
commit
9958ba97d0
1 changed files with 17 additions and 0 deletions
17
test/live_beats_web/live/settings_live_test.exs
Normal file
17
test/live_beats_web/live/settings_live_test.exs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
defmodule LiveBeatsWeb.SettingsLiveTest do
|
||||||
|
use LiveBeatsWeb.ConnCase
|
||||||
|
|
||||||
|
# import Phoenix.LiveViewTest
|
||||||
|
import LiveBeats.AccountsFixtures
|
||||||
|
|
||||||
|
setup %{conn: conn} do
|
||||||
|
current_user = user_fixture(%{username: "chrismccord"})
|
||||||
|
user2 = user_fixture(%{username: "mrkurt"})
|
||||||
|
conn = log_in_user(conn, current_user)
|
||||||
|
{:ok, conn: conn, current_user: current_user, user2: user2}
|
||||||
|
end
|
||||||
|
|
||||||
|
# test "updating settings", %{conn: conn, current_user: current_user} do
|
||||||
|
# # TODO
|
||||||
|
# end
|
||||||
|
end
|
Loading…
Reference in a new issue