Skip to content

Commit 8b3b2e6

Browse files
committed
ffs
1 parent fdf1928 commit 8b3b2e6

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

lib/graphql-docs/parser.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def initialize(schema, options)
3232
end
3333

3434
def parse
35-
3635
root_types = {}
3736
['query', 'mutation'].each do |operation|
3837
unless @schema.root_type_for_operation(operation).nil?

test/graphql-docs/generator_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_that_it_does_not_require_default
5151

5252
GraphQLDocs::Generator.new(@results, options)
5353
end
54-
focus
54+
5555
def test_that_it_works
5656
options = deep_copy(GraphQLDocs::Configuration::GRAPHQLDOCS_DEFAULTS)
5757
options[:output_dir] = @output_dir

test/graphql-docs/parser_test.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def test_directives
6464
assert_equal %w(deprecated include preview skip), names
6565

6666
preview_directive = @gh_results[:directive_types].find { |t| t[:name] == 'deprecated' }
67-
ap preview_directive
6867
assert_equal %i(FIELD_DEFINITION ENUM_VALUE), preview_directive[:locations]
6968

7069
assert_equal 'Marks an element of a GraphQL schema as no longer supported.', preview_directive[:description]

0 commit comments

Comments
 (0)