Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions cypress/e2e/users/custom-fields/create-custom-fields.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ describe('Users', () => {

it(
'C15693 Create a text field custom field (volaris)',
{ tags: ['extendedPath', 'volaris', 'C15693'] },
{
tags: ['extendedPath', 'volaris', 'C15693'],
retries: 2,
},
() => {
const fieldData = {
fieldLabel: `TF_${getRandomPostfix()}`,
Expand All @@ -59,7 +62,10 @@ describe('Users', () => {

it(
'C15694 Create a text area custom field and add help text (volaris)',
{ tags: ['extendedPath', 'volaris', 'C15694', 'eurekaPhase1'] },
{
tags: ['extendedPath', 'volaris', 'C15694', 'eurekaPhase1'],
retries: 2,
},
() => {
const fieldData = {
fieldLabel: `TA_${getRandomPostfix()}`,
Expand All @@ -82,7 +88,10 @@ describe('Users', () => {

it(
'C15695 Create a checkbox custom field (volaris)',
{ tags: ['extendedPath', 'volaris', 'C15695', 'eurekaPhase1'] },
{
tags: ['extendedPath', 'volaris', 'C15695', 'eurekaPhase1'],
retries: 2,
},
() => {
const checkboxData = {
fieldLabel: `CB_${getRandomPostfix()}`,
Expand All @@ -105,7 +114,10 @@ describe('Users', () => {

it(
'C15696 Create a radio button custom field (volaris)',
{ tags: ['extendedPath', 'volaris', 'C15696', 'eurekaPhase1'] },
{
tags: ['extendedPath', 'volaris', 'C15696', 'eurekaPhase1'],
retries: 2,
},
() => {
const radioButtonData = {
data: {
Expand All @@ -132,7 +144,10 @@ describe('Users', () => {

it(
'C15697 Create a single select custom field (volaris)',
{ tags: ['extendedPath', 'volaris', 'C15697', 'eurekaPhase1'] },
{
tags: ['extendedPath', 'volaris', 'C15697', 'eurekaPhase1'],
retries: 2,
},
() => {
const singleSelectData = {
data: {
Expand Down