Sha256: 3ca574e8ef7722043a2ef5a03f75ccb12dfa56c76312f228e351cd1a699f2412
Contents?: true
Size: 537 Bytes
Versions: 9
Compression:
Stored size: 537 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe "GraphiQL", type: :feature do let!(:organization) { create(:organization) } let!(:participatory_process) do create(:participatory_process, organization: organization) end before do switch_to_host(organization.host) visit decidim_api.graphiql_path end it "is able to execute the default query" do find(".execute-button").click within ".result-window" do expect(page).to have_content("\"id\": \"#{organization.id}\"") end end end
Version data entries
9 entries across 9 versions & 1 rubygems