9 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| describe('Blog Page', () => {
 | |
|   it('shows posts', () => {
 | |
|     cy.setupDB("app", "blog")
 | |
| 
 | |
|     cy.visit('/blog')
 | |
| 
 | |
|     cy.get('article').should('exist')
 | |
|   })
 | |
| })
 | 
