diff options
Diffstat (limited to 'cypress/e2e/theming')
-rw-r--r-- | cypress/e2e/theming/admin-settings.cy.ts | 5 | ||||
-rw-r--r-- | cypress/e2e/theming/themingUtils.ts | 4 | ||||
-rw-r--r-- | cypress/e2e/theming/user-background.cy.ts | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/cypress/e2e/theming/admin-settings.cy.ts b/cypress/e2e/theming/admin-settings.cy.ts index 97f3b66c36e..4736ace9e4d 100644 --- a/cypress/e2e/theming/admin-settings.cy.ts +++ b/cypress/e2e/theming/admin-settings.cy.ts @@ -19,6 +19,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ +/* eslint-disable n/no-unpublished-import */ import { User } from '@nextcloud/cypress' import { colord } from 'colord' @@ -66,7 +67,7 @@ describe('Change the primary colour and reset it', function() { cy.intercept('*/apps/theming/ajax/updateStylesheet').as('setColor') pickRandomColor('[data-admin-theming-setting-primary-color-picker]') - .then(color => selectedColor = color) + .then(color => { selectedColor = color }) cy.wait('@setColor') cy.waitUntil(() => validateBodyThemingCss(selectedColor, defaultBackground)) @@ -310,7 +311,7 @@ describe('User default option matches admin theming', function() { cy.intercept('*/apps/theming/ajax/updateStylesheet').as('setColor') pickRandomColor('[data-admin-theming-setting-primary-color-picker]') - .then(color => selectedColor = color) + .then(color => { selectedColor = color }) cy.wait('@setColor') cy.waitUntil(() => cy.window().then((win) => { diff --git a/cypress/e2e/theming/themingUtils.ts b/cypress/e2e/theming/themingUtils.ts index 2cdbb07c000..f3e9d96bd05 100644 --- a/cypress/e2e/theming/themingUtils.ts +++ b/cypress/e2e/theming/themingUtils.ts @@ -67,9 +67,9 @@ export const pickRandomColor = function(pickerSelector: string): Cypress.Chainab cy.get(pickerSelector).click() // Return selected colour - return cy.get(pickerSelector).get(`.color-picker__simple-color-circle`).eq(randColour) + return cy.get(pickerSelector).get('.color-picker__simple-color-circle').eq(randColour) .click().then(colorElement => { const selectedColor = colorElement.css('background-color') return selectedColor }) -}
\ No newline at end of file +} diff --git a/cypress/e2e/theming/user-background.cy.ts b/cypress/e2e/theming/user-background.cy.ts index f2fde122ce4..8f9e42d6ad4 100644 --- a/cypress/e2e/theming/user-background.cy.ts +++ b/cypress/e2e/theming/user-background.cy.ts @@ -21,11 +21,11 @@ */ import type { User } from '@nextcloud/cypress' +import { pickRandomColor, validateBodyThemingCss } from './themingUtils' + const defaultPrimary = '#006aa3' const defaultBackground = 'kamil-porembinski-clouds.jpg' -import { pickRandomColor, validateBodyThemingCss } from './themingUtils' - describe('User default background settings', function() { before(function() { cy.createRandomUser().then((user: User) => { |