-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Altair Playground updated to version 8.1.3 and configuration input ad…
…ded. (#3485) * altair options added * Update go.mod * Update altair_playground.go * Update altair_playground.go * Update altair_playground.go * Update altair_playground.go * Update altair_playground.go * update version * sha * Update altair_playground.go * revert * jsonOptions * fix tests * revert and alter test * Update graphql/playground/altair_playground.go --------- Co-authored-by: Steve Coffman <[email protected]>
- Loading branch information
1 parent
83e3979
commit 7b1908e
Showing
2 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
package playground | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
) | ||
|
||
func TestAltairHandler_Integrity(t *testing.T) { | ||
testResourceIntegrity(t, AltairHandler) | ||
testResourceIntegrity(t, func(title, endpoint string) http.HandlerFunc { return AltairHandler(title, endpoint, nil) }) | ||
} |