blob: 831c022e904a57c156d890e0bce34ba6a3fe095d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 | import { CONFIG } from '../../../../src/utils/config';
import { ROUTES } from '../../../../src/utils/constants';
import { wpPostsFixture } from '../../../fixtures';
describe('Blog Page', () => {
  beforeEach(() => {
    cy.visit(ROUTES.BLOG);
  });
  it('successfully loads', () => {
    cy.findByRole('heading', { level: 1 }).should('exist');
  });
  it('contains a breadcrumbs', () => {
    cy.findByRole('navigation', { name: 'Fil d’Ariane'
 |