mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 13:53:19 -07:00
fix?
This commit is contained in:
parent
2187c0d7d4
commit
9f8e07fc42
3 changed files with 5 additions and 4 deletions
|
@ -23,7 +23,7 @@ describe("Plex Settings Tests", () => {
|
|||
"version": "1.30.0.6442-5070ad484",
|
||||
"scheme": "http",
|
||||
"host": "2.2.2.2",
|
||||
"localAddresses": "http://host.docker.internal",
|
||||
"localAddresses": "${Cypress.env("dockerhost")}",
|
||||
"machineIdentifier": "9999999999999999",
|
||||
"createdAt": "5555555555",
|
||||
"updatedAt": "6666666666",
|
||||
|
@ -47,7 +47,7 @@ describe("Plex Settings Tests", () => {
|
|||
|
||||
const modal = Page.plexServerModal;
|
||||
modal.serverName.should('have.value','AutomationServer');
|
||||
modal.hostName.should('have.value','localhost');
|
||||
modal.hostName.should('have.value', Cypress.env("dockerhost"));
|
||||
modal.port.should('have.value','32400');
|
||||
modal.authToken.should('have.value','myaccessToken');
|
||||
modal.machineIdentifier.should('have.value','9999999999999999');
|
||||
|
@ -77,7 +77,7 @@ describe("Plex Settings Tests", () => {
|
|||
// Edit server
|
||||
Page.plexServerGrid.serverCardButton('AutomationServer').click();
|
||||
modal.serverName.should('have.value','AutomationServer');
|
||||
modal.hostName.should('have.value','localhost');
|
||||
modal.hostName.should('have.value', Cypress.env("dockerhost"));
|
||||
modal.port.should('have.value','32400');
|
||||
modal.authToken.should('have.value','myaccessToken');
|
||||
modal.machineIdentifier.should('have.value','9999999999999999');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue