-
Notifications
You must be signed in to change notification settings - Fork 24
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 #133 from jerensl/chore/rename-to-new-cloud-url
chore: rename to new cloud url
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 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
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 +1 @@ | ||
{"provider_type":"remote","package_url":"https://github.com/layer5labs/meshery-extensions-packages/releases/download/v0.6.89-2/provider-meshery.tar.gz","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","extensions":{"navigator":[{"title":"MeshMap","on_click_callback":1,"href":{"uri":"/meshmap","external":false},"component":"/provider/navigator/meshmap/index.js","icon":"/provider/navigator/img/meshmap-icon.svg","link":true,"show":true,"type":"full_page"}],"user_prefs":[{"component":"/provider/userpref/meshmap_userpref/index.js","type":"component"}],"graphql":[{"component":"meshmap","path":"provider/navigator/meshmap/graphql/plugin.so","type":"backend"}],"account":[{"title":"Account","on_click_callback":1,"href":{"uri":"/account","external":false},"component":"/provider/account/profile/index.js","link":true,"show":true,"type":"full_page"}]},"capabilities":[{"feature":"sync-prefs","endpoint":"/user/preferences"},{"feature":"persist-results","endpoint":"/results"},{"feature":"persist-result","endpoint":"/result"},{"feature":"persist-smi-results","endpoint":"/smi/results"},{"feature":"persist-smi-result","endpoint":"/smi/result"},{"feature":"persist-metrics","endpoint":"/result/metrics"},{"feature":"persist-smp-test-profile","endpoint":"/user/test-config"},{"feature":"persist-performance-profiles","endpoint":"/user/performance/profiles"},{"feature":"persist-schedules","endpoint":"/user/schedules"},{"feature":"persist-meshery-patterns","endpoint":"/patterns"},{"feature":"persist-meshery-filters","endpoint":"/filters"},{"feature":"persist-meshery-applications","endpoint":"/applications"},{"feature":"persist-meshery-pattern-resources","endpoint":"/patterns/resource"}],"package_version":"v0.6.89-2"} | ||
{"provider_type":"remote","package_url":"https://github.com/layer5labs/meshery-extensions-packages/releases/download/v0.6.89-2/provider-meshery.tar.gz","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://cloud.layer5.io","extensions":{"navigator":[{"title":"MeshMap","on_click_callback":1,"href":{"uri":"/meshmap","external":false},"component":"/provider/navigator/meshmap/index.js","icon":"/provider/navigator/img/meshmap-icon.svg","link":true,"show":true,"type":"full_page"}],"user_prefs":[{"component":"/provider/userpref/meshmap_userpref/index.js","type":"component"}],"graphql":[{"component":"meshmap","path":"provider/navigator/meshmap/graphql/plugin.so","type":"backend"}],"account":[{"title":"Account","on_click_callback":1,"href":{"uri":"/account","external":false},"component":"/provider/account/profile/index.js","link":true,"show":true,"type":"full_page"}]},"capabilities":[{"feature":"sync-prefs","endpoint":"/user/preferences"},{"feature":"persist-results","endpoint":"/results"},{"feature":"persist-result","endpoint":"/result"},{"feature":"persist-smi-results","endpoint":"/smi/results"},{"feature":"persist-smi-result","endpoint":"/smi/result"},{"feature":"persist-metrics","endpoint":"/result/metrics"},{"feature":"persist-smp-test-profile","endpoint":"/user/test-config"},{"feature":"persist-performance-profiles","endpoint":"/user/performance/profiles"},{"feature":"persist-schedules","endpoint":"/user/schedules"},{"feature":"persist-meshery-patterns","endpoint":"/patterns"},{"feature":"persist-meshery-filters","endpoint":"/filters"},{"feature":"persist-meshery-applications","endpoint":"/applications"},{"feature":"persist-meshery-pattern-resources","endpoint":"/patterns/resource"}],"package_version":"v0.6.89-2"} |
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,7 +1,7 @@ | ||
const { test, expect } = require("@playwright/test"); | ||
|
||
test("Login and logout test", async ({ page }) => { | ||
await page.goto("https://meshery.layer5.io/login"); | ||
await page.goto("https://cloud.layer5.io/login"); | ||
await page.locator('input[name="identifier"]').fill("[email protected]"); | ||
await page.locator('input[name="identifier"]').press("Tab"); | ||
await page.locator('input[name="password"]').fill("test-admin"); | ||
|