File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,9 @@ describe('Basic Access Test', () => {
1616 cy . url ( LOAD_TIMEOUT ) . should ( 'match' , / h t t p : \/ \/ l o c a l h o s t : \d + \/ l e n d \/ e t h e r e u m \/ l e g a l \/ ? \? t a b = d i s c l a i m e r s $ / )
1717 cy . title ( ) . should ( 'equal' , 'Legal - Curve Lend' )
1818 } )
19+
20+ it ( 'should open a lend market page succesfully' , ( ) => {
21+ cy . visit ( '/lend/ethereum/markets/0x23F5a668A9590130940eF55964ead9787976f2CC' ) // some WETH lend market on ethereum
22+ cy . get ( '[data-testid^="detail-page-stack"]' , LOAD_TIMEOUT ) . should ( 'be.visible' )
23+ } )
1924} )
Original file line number Diff line number Diff line change @@ -11,4 +11,9 @@ describe('Basic Access Test', () => {
1111 cy . title ( LOAD_TIMEOUT ) . should ( 'equal' , 'Savings crvUSD - Curve' )
1212 cy . url ( ) . should ( 'match' , / h t t p : \/ \/ l o c a l h o s t : \d + \/ c r v u s d \/ e t h e r e u m \/ s c r v U S D \/ ? $ / )
1313 } )
14+
15+ it ( 'should open a loan market page succesfully' , ( ) => {
16+ cy . visit ( '/crvusd/ethereum/markets/WBTC' ) // some WBTC mint market on ethereum
17+ cy . get ( '[data-testid^="detail-page-stack"]' , LOAD_TIMEOUT ) . should ( 'be.visible' )
18+ } )
1419} )
You can’t perform that action at this time.
0 commit comments