From 69f6a953f76b821e3a668fc488bf3932e1177cd7 Mon Sep 17 00:00:00 2001 From: Craig Landry Date: Thu, 9 Nov 2023 15:14:47 -0500 Subject: [PATCH] fix: Remove H1 for test page (#1231) The Hugo template takes this from the markdown metadata and prints that as an H1 already. Having it again on the page resulted in a duplicate H1. Co-authored-by: Craig Landry --- content/en/contribute/code/core/automated-tests.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/en/contribute/code/core/automated-tests.md b/content/en/contribute/code/core/automated-tests.md index 9370b11b0..8847f26d1 100644 --- a/content/en/contribute/code/core/automated-tests.md +++ b/content/en/contribute/code/core/automated-tests.md @@ -9,8 +9,6 @@ aliases: > /contribute/code/core/fixing-e2e-tests --- -# Automated Tests - ## Unit Tests Each unit test is only intended to validate an isolated piece (unit) of functionality separated from the rest of the system. They can use mocking to replicate the behavior of other parts of the system.