File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ jobs:
101101 cypress-dashboard :
102102 name : Cypress - Dashboard
103103 runs-on : ubuntu-latest
104- needs : docker-build
105104
106105 steps :
107106 - uses : actions/checkout@v4
@@ -124,7 +123,6 @@ jobs:
124123 cypress-events :
125124 name : Cypress - Events
126125 runs-on : ubuntu-latest
127- needs : docker-build
128126
129127 steps :
130128 - uses : actions/checkout@v4
@@ -147,7 +145,6 @@ jobs:
147145 cypress-insights :
148146 name : Cypress - Insights
149147 runs-on : ubuntu-latest
150- needs : docker-build
151148
152149 steps :
153150 - uses : actions/checkout@v4
@@ -170,7 +167,6 @@ jobs:
170167 cypress-organizations :
171168 name : Cypress - Organizations
172169 runs-on : ubuntu-latest
173- needs : docker-build
174170
175171 steps :
176172 - uses : actions/checkout@v4
@@ -193,7 +189,6 @@ jobs:
193189 cypress-user :
194190 name : Cypress - User
195191 runs-on : ubuntu-latest
196- needs : docker-build
197192
198193 steps :
199194 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1- describe ( " Dashboard Page" , ( ) => {
2- it ( " displays the correct main title" , ( ) => {
3- cy . visit ( " localhost:5173" )
1+ describe ( ' Dashboard Page' , ( ) => {
2+ it ( ' displays the correct main title' , ( ) => {
3+ cy . visit ( ' localhost:5173' ) ;
44
5- cy . get ( "h1" ) . should ( " contain" , " My Dashboard" )
6- } )
7- } )
5+ cy . get ( 'h1' ) . should ( ' contain' , ' My Dashboard' ) ;
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 1- describe ( " Event Page" , ( ) => {
2- it ( " displays the correct main title" , ( ) => {
3- cy . visit ( " localhost:5173/events" )
1+ describe ( ' Event Page' , ( ) => {
2+ it ( ' displays the correct main title' , ( ) => {
3+ cy . visit ( ' localhost:5173/events' ) ;
44
5- cy . get ( "h1" ) . should ( " contain" , " My Events" )
6- } )
7- } )
5+ cy . get ( 'h1' ) . should ( ' contain' , ' My Events' ) ;
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 1- describe ( " Insights Page" , ( ) => {
2- it ( " displays the correct main title" , ( ) => {
3- cy . visit ( " localhost:5173/insights" )
1+ describe ( ' Insights Page' , ( ) => {
2+ it ( ' displays the correct main title' , ( ) => {
3+ cy . visit ( ' localhost:5173/insights' ) ;
44
5- cy . get ( "h1" ) . should ( " contain" , " Insights" )
6- } )
7- } )
5+ cy . get ( 'h1' ) . should ( ' contain' , ' Insights' ) ;
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 1- describe ( " Organizations Page" , ( ) => {
2- it ( " displays the correct main title" , ( ) => {
3- cy . visit ( " localhost:5173/organizations" )
1+ describe ( ' Organizations Page' , ( ) => {
2+ it ( ' displays the correct main title' , ( ) => {
3+ cy . visit ( ' localhost:5173/organizations' ) ;
44
5- cy . get ( "h1" ) . should ( " contain" , " My Organizations" )
6- } )
7- } )
5+ cy . get ( 'h1' ) . should ( ' contain' , ' My Organizations' ) ;
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 1- describe ( " Profile Page" , ( ) => {
2- it ( " displays the correct main title" , ( ) => {
3- cy . visit ( " localhost:5173/profile" )
1+ describe ( ' Profile Page' , ( ) => {
2+ it ( ' displays the correct main title' , ( ) => {
3+ cy . visit ( ' localhost:5173/profile' ) ;
44
5- cy . get ( "h1" ) . should ( " contain" , " My Profile" )
6- } )
7- } )
5+ cy . get ( 'h1' ) . should ( ' contain' , ' My Profile' ) ;
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 11{
2- "compilerOptions" : {
3- "types" : [" cypress" ]
4- },
5- "include" : [" **/*.ts" ]
6- }
2+ "compilerOptions" : {
3+ "types" : [" cypress" ]
4+ },
5+ "include" : [" **/*.ts" ]
6+ }
You can’t perform that action at this time.
0 commit comments