legendary-doc-site/apps/app/cypress/integration/blog_spec.js
2021-08-12 19:07:19 +00:00

9 lines
158 B
JavaScript

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