legendary-doc-site/apps/app/cypress/integration/blog_spec.js

10 lines
158 B
JavaScript
Raw Normal View History

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