Skip to content

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminjkraft committed Aug 25, 2021
1 parent b61d674 commit 3073246
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions generate/generate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,13 @@ func TestGenerate(t *testing.T) {
t.Run("Build", func(t *testing.T) {
if testing.Short() {
t.Skip("skipping build due to -short")
} else if sourceFilename == "InterfaceNesting.graphql" || // #8
sourceFilename == "InterfaceListField.graphql" || // #8
sourceFilename == "Omitempty.graphql" { // #43
t.Skip("TODO: enable these once they build")
} else if sourceFilename == "InterfaceNesting.graphql" ||
sourceFilename == "InterfaceListField.graphql" {
t.Skip("TODO: enable after fixing " +
"https://github.com/Khan/genqlient/issues/8")
} else if sourceFilename == "Omitempty.graphql" {
t.Skip("TODO: enable after fixing " +
"https://github.com/Khan/genqlient/issues/43")
}

goContent := generated[goFilename]
Expand Down

0 comments on commit 3073246

Please sign in to comment.