2018-11-20 22:21:38 +01:00
|
|
|
describe 'graphql' do
|
2020-08-05 18:40:47 +02:00
|
|
|
let(:current_defn) { API::V2::Schema.to_definition }
|
2018-11-20 22:21:38 +01:00
|
|
|
let(:printout_defn) { File.read(Rails.root.join('app', 'graphql', 'schema.graphql')) }
|
|
|
|
|
|
|
|
it "update the printed schema with `bin/rake graphql:schema:idl`" do
|
|
|
|
result = GraphQL::SchemaComparator.compare(current_defn, printout_defn)
|
|
|
|
expect(result.identical?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|