We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501ba3c commit 01367dfCopy full SHA for 01367df
tests/GraphQL.Integration.Tests/UriExtensionTests.cs
@@ -28,7 +28,7 @@ public void HasWebSocketSchemaTest(string url, bool result)
28
[InlineData("ws://this-url-can-be-converted.net", true, "ws://this-url-can-be-converted.net")]
29
[InlineData("wss://this-url-can-be-converted.net", true, "wss://this-url-can-be-converted.net")]
30
[InlineData("https://this-url-can-be-converted.net/and/all/elements/?are#preserved", true, "wss://this-url-can-be-converted.net/and/all/elements/?are#preserved")]
31
- [InlineData("ftp://this-url-can-be-converted.net", false, null)]
+ [InlineData("ftp://this-url-cannot-be-converted.net", false, null)]
32
// AppSync example
33
[InlineData("wss://example1234567890000.appsync-realtime-api.us-west-2.amazonaws.com/graphql?header=123456789ABCDEF&payload=e30=", true, "wss://example1234567890000.appsync-realtime-api.us-west-2.amazonaws.com/graphql?header=123456789ABCDEF&payload=e30=")]
34
public void GetWebSocketUriTest(string input, bool canConvert, string result)
0 commit comments