Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis Timson <curt@live.co.uk>2022-04-07 14:15:47 +0300
committerGitHub <noreply@github.com>2022-04-07 14:15:47 +0300
commite5423a2561e3ec8acdf38c75a9b2e9ee72dec32c (patch)
tree7d1bf0edb554c53d3ebd482c3447d21715740983 /cypress
parent15dc7632f64f95cc9d0b5befa0d81defe12e1fe5 (diff)
🔧 Hugo config.toml (#106)
* 🔧 Hugo config.toml * trim whitespace on output * fix e2e test
Diffstat (limited to 'cypress')
-rw-r--r--cypress/integration/home.test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/cypress/integration/home.test.ts b/cypress/integration/home.test.ts
index ab3a1d7..aa55b1c 100644
--- a/cypress/integration/home.test.ts
+++ b/cypress/integration/home.test.ts
@@ -5,7 +5,8 @@ describe('Home', () => {
it('displays title', () => {
cy.get('h1')
- .contains('This is Massively');
+ .contains('This is')
+ .contains('Massively');
});
});