Sha256: 902752ad14803cf39e9602070475679987ba9e1b90322940af85b1f37ba07568
Contents?: true
Size: 538 Bytes
Versions: 20
Compression:
Stored size: 538 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
20 entries across 20 versions & 1 rubygems