aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/cypress/e2e/pages/blog.cy.ts13
-rw-r--r--tests/fixtures/wp-posts.fixture.ts4
2 files changed, 15 insertions, 2 deletions
diff --git a/tests/cypress/e2e/pages/blog.cy.ts b/tests/cypress/e2e/pages/blog.cy.ts
index 3a422d2..0350e39 100644
--- a/tests/cypress/e2e/pages/blog.cy.ts
+++ b/tests/cypress/e2e/pages/blog.cy.ts
@@ -11,6 +11,14 @@ describe('Blog Page', () => {
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' }).should('exist');
+ });
+
it('loads the correct number of pages', () => {
cy.findByText(
/(?<first>\d+) articles chargés sur un total de (?<total>\d+)/i
@@ -49,4 +57,9 @@ describe('Blog Page', () => {
);
});
});
+
+ it('contains a thematics list widget and a topics list widget', () => {
+ cy.findByRole('heading', { level: 2, name: 'Thématiques' }).should('exist');
+ cy.findByRole('heading', { level: 2, name: 'Sujets' }).should('exist');
+ });
});
diff --git a/tests/fixtures/wp-posts.fixture.ts b/tests/fixtures/wp-posts.fixture.ts
index a1b1e4a..7adc928 100644
--- a/tests/fixtures/wp-posts.fixture.ts
+++ b/tests/fixtures/wp-posts.fixture.ts
@@ -1,6 +1,6 @@
import type { WPPost } from '../../src/types';
-export const wpPostsFixture: WPPost[] = [
+export const wpPostsFixture = [
{
acfPosts: null,
author: {
@@ -174,4 +174,4 @@ export const wpPostsFixture: WPPost[] = [
slug: '/post-4',
title: 'Post 4',
},
-];
+] satisfies WPPost[];