Skip to content

Commit

Permalink
ci: Fix running new tests on ci
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr authored and max-nextcloud committed Dec 16, 2024
1 parent 0d587eb commit 66e6e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/openreadonly.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ describe('Open read-only mode', function () {
cy.login(admin)
cy.ocsRequest({
method: 'POST',
url: 'http://localhost/ocs/v2.php/apps/testing/api/v1/app/text/open_read_only_enabled',
body: { value: mode }
url: `${Cypress.env('baseUrl')}/ocs/v2.php/apps/testing/api/v1/app/text/open_read_only_enabled`,
body: { value: mode },
}).then(response => {
cy.log(response.status)
})
Expand Down

0 comments on commit 66e6e6c

Please sign in to comment.