forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request meshery#7093 from Abhishek-kumar09/Abhi/cypress-fix
[Fix] Cypress integration Test failure
- Loading branch information
Showing
6 changed files
with
117 additions
and
23 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,14 +1,26 @@ | ||
{ | ||
"Meshery": { | ||
"ProviderType": "remote", | ||
"DisplayName": "Meshery", | ||
"Description": "Provider: Meshery (default)\n\t- persistent sessions \n\t- save environment setup \n\t- retrieve performance test results \n\t- free use", | ||
"Capabilities": [] | ||
"provider_type": "remote", | ||
"provider_name": "Meshery", | ||
"provider_description": [ | ||
"Persistent sessions", | ||
"Save environment configurations and user preferences", | ||
"Store and retrieve patterns, filters, and application defintions", | ||
"Retrieve performance and conformance test results", | ||
"RBAC support", | ||
"Free use" | ||
], | ||
"provider_url": "https://meshery.layer5.io" | ||
}, | ||
"None": { | ||
"ProviderType": "local", | ||
"DisplayName": "None", | ||
"Description": "Provider: None\n\t- ephemeral sessions\n\t- environment setup not saved\n\t- no performance test result history\n\t- free use", | ||
"Capabilities": [] | ||
"provider_type": "local", | ||
"package_version": "v0.6.51", | ||
"provider_name": "None", | ||
"provider_description": [ | ||
"Ephemeral sessions", | ||
"Environment setup not saved", | ||
"No performance or conformance test result history", | ||
"Free Use" | ||
] | ||
} | ||
} |
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,10 +1,72 @@ | ||
[ | ||
"localhost:10004", | ||
"localhost:10006", | ||
"localhost:10008", | ||
"localhost:10009", | ||
"localhost:10000", | ||
"localhost:10001", | ||
"localhost:10002", | ||
"localhost:10003" | ||
{ | ||
"adapter_location": "localhost:10007", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10009", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10010", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10000", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10002", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10004", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10005", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10006", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10012", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
}, | ||
{ | ||
"adapter_location": "localhost:10001", | ||
"name": "", | ||
"version": "", | ||
"git_commit_sha": "", | ||
"ops": null | ||
} | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/node_modules/subscriptions-transport-ws/dist/client.js b/node_modules/subscriptions-transport-ws/dist/client.js | ||
index 3202dcd..ec570ce 100644 | ||
--- a/node_modules/subscriptions-transport-ws/dist/client.js | ||
+++ b/node_modules/subscriptions-transport-ws/dist/client.js | ||
@@ -122,11 +122,12 @@ var SubscriptionClient = (function () { | ||
this.unsubscribeAll(); | ||
this.sendMessage(undefined, message_types_1.default.GQL_CONNECTION_TERMINATE, null); | ||
} | ||
- this.client.close(); | ||
- this.client.onopen = null; | ||
- this.client.onclose = null; | ||
- this.client.onerror = null; | ||
- this.client.onmessage = null; | ||
+ const client = this.client; | ||
+ client.close(); | ||
+ client.onopen = null; | ||
+ client.onclose = null; | ||
+ client.onerror = null; | ||
+ client.onmessage = null; | ||
this.client = null; | ||
this.eventEmitter.emit('disconnected'); | ||
if (!isForced) { |