defmodule ToweropsWeb.GraphQLDocsControllerTest do use ToweropsWeb.ConnCase describe "GET /docs/graphql" do test "renders the docs page for an unauthenticated visitor", %{conn: conn} do conn = get(conn, ~p"/docs/graphql") response = response(conn, 200) assert response =~ "YOUR_API_TOKEN" end end end