diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-10-26 16:40:06 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-10-29 23:36:58 +0100 |
commit | a7c88519f73dbb52132c849113d522d117b1dbfa (patch) | |
tree | 590c3e6b61a16d6f842e08a850480c93e5c4b06c /cypress/e2e/settings/users_disable.cy.ts | |
parent | bfc8b0bc15c2c8b0e0ba1a6534715289c40415bc (diff) | |
download | nextcloud-server-a7c88519f73dbb52132c849113d522d117b1dbfa.tar.gz nextcloud-server-a7c88519f73dbb52132c849113d522d117b1dbfa.zip |
chore(cypress): Move `clearState` from user utils to shared common utils
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'cypress/e2e/settings/users_disable.cy.ts')
-rw-r--r-- | cypress/e2e/settings/users_disable.cy.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cypress/e2e/settings/users_disable.cy.ts b/cypress/e2e/settings/users_disable.cy.ts index e63ba4fc3d6..1218d4f770b 100644 --- a/cypress/e2e/settings/users_disable.cy.ts +++ b/cypress/e2e/settings/users_disable.cy.ts @@ -21,7 +21,8 @@ */ import { User } from '@nextcloud/cypress' -import { clearState, getUserListRow } from './usersUtils' +import { getUserListRow } from './usersUtils' +import { clearState } from '../../support/commonUtils' const admin = new User('admin', 'admin') |