Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram:pain
> ./test/pain_web/plugs/cors_test.exs
Lenses
(coming soon!)
# test/my_app_web/plugs/allow_iframe_test.exs
defmodule PainWeb.Plugs.EnableCorsTest do
use ExUnit.Case, async: true
use Plug.Test
alias PainWeb.Plugs.EnableCors
test "updates Content-Security-Policy headers" do
conn = conn(:get, "/hello") |> EnableCors.call(%{})
assert(
conn.resp_headers
|> Enum.find(fn {header, _} -> header == "content-security-policy" end)
== { "content-security-policy",
"frame-ancestors 'self' https://painawayofphilly.com https://*.painawayofphilly.com https://*squarespace.com;" }
)
end
end