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:
Diffstat (limited to 'cypress/integration/generic-page.test.ts')
-rw-r--r--cypress/integration/generic-page.test.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/cypress/integration/generic-page.test.ts b/cypress/integration/generic-page.test.ts
new file mode 100644
index 0000000..ef5d2eb
--- /dev/null
+++ b/cypress/integration/generic-page.test.ts
@@ -0,0 +1,11 @@
+describe('Generic Page', () => {
+ before(() => {
+ cy.visit('http://localhost:1313/generic-page');
+ });
+
+ it('displays title', () => {
+ cy.get('h1')
+ .contains('Generic Page');
+ });
+
+});