File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cypress/integration/pages Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ describe('Add Organization Workflow', () => {
55 const AUTOCOMPLETE_COUNTRY = 'united' ;
66 const AUTOCOMPLETE_ORG = 'hack' ;
77 const VALID_EMAIL = 'test@test.test' ;
8- const VALID_NAME = faker . company . companyName ( ) ;
9- const VALID_NAME_2 = faker . company . companyName ( ) ;
10- const VALID_PARENT_NAME = faker . company . companyName ( ) ;
8+ const VALID_NAME = `test_ ${ faker . company . companyName ( ) } ` ;
9+ const VALID_NAME_2 = `test_ ${ faker . company . companyName ( ) } ` ;
10+ const VALID_PARENT_NAME = `test_ ${ faker . company . companyName ( ) } ` ;
1111 const VALID_TAG = 'test-tag' ;
1212 const VALID_CITY = 'Los Angeles' ;
1313 const VALID_STATE = 'CA' ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const faker = require('faker')
33describe ( 'Footer' , ( ) => {
44 const BAD_FORMAT_EMAIL = 'test@'
55 const DUPLICATE_EMAIL = 'test@test.test'
6- const RANDOM_EMAIL = faker . internet . email ( ) ;
6+ const RANDOM_EMAIL = `test_ ${ faker . internet . email ( ) } ` ;
77
88 before ( ( ) => {
99 cy . visit ( '/home' )
You can’t perform that action at this time.
0 commit comments