aboutsummaryrefslogtreecommitdiffstats
path: root/cypress/e2e/theming/themingUtils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cypress/e2e/theming/themingUtils.ts')
-rw-r--r--cypress/e2e/theming/themingUtils.ts4
1 files changed, 2 insertions, 2 deletions
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
+}