mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:05:47 +00:00
cypress: skip parsing special character sequences and type the text exactly as written
This commit is contained in:
@@ -61,7 +61,7 @@ export const genTest = (apiType, dbType) => {
|
||||
.contains("Formula")
|
||||
.parent()
|
||||
.click()
|
||||
.type(formula)
|
||||
.type(formula, { parseSpecialCharSequences: false })
|
||||
.click();
|
||||
|
||||
// click on Save
|
||||
@@ -115,7 +115,7 @@ export const genTest = (apiType, dbType) => {
|
||||
.parent()
|
||||
.find("input")
|
||||
.clear()
|
||||
.type(newFormula)
|
||||
.type(newFormula, { parseSpecialCharSequences: false })
|
||||
.click();
|
||||
|
||||
cy.get(".nc-col-create-or-edit-card")
|
||||
|
||||
Reference in New Issue
Block a user