diff options
author | Louis Chemineau <louis@chmn.me> | 2024-11-25 12:42:51 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2024-11-25 16:22:09 +0100 |
commit | ebda7b45f64bbdb74b8e664f15c0f876d1a45117 (patch) | |
tree | bdc62596da86064767bd6a6c4e4d5468493ae04f /cypress/e2e/settings/personal-info.cy.ts | |
parent | 3822db51742eb12c67b525cab80ec0699e011684 (diff) | |
download | nextcloud-server-ebda7b45f64bbdb74b8e664f15c0f876d1a45117.tar.gz nextcloud-server-ebda7b45f64bbdb74b8e664f15c0f876d1a45117.zip |
chore: Update @nextcloud/cypress to v1.0.0-beta.11artonge/chore/update_nc_cypress_beta.11
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress/e2e/settings/personal-info.cy.ts')
-rw-r--r-- | cypress/e2e/settings/personal-info.cy.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/settings/personal-info.cy.ts b/cypress/e2e/settings/personal-info.cy.ts index 30c0bce9421..940e3cd6449 100644 --- a/cypress/e2e/settings/personal-info.cy.ts +++ b/cypress/e2e/settings/personal-info.cy.ts @@ -118,7 +118,7 @@ describe('Settings: Change personal information', { testIsolation: true }, () => cy.login(user) cy.visit('/settings/user') - cy.backupDB().then(($snapshot) => { + cy.saveState().then(($snapshot) => { snapshot = $snapshot }) }) @@ -136,7 +136,7 @@ describe('Settings: Change personal information', { testIsolation: true }, () => }) afterEach(() => { - cy.restoreDB(snapshot) + cy.restoreState(snapshot) }) it('Can dis- and enable the profile', () => { |