dawidpolakowski / next-js-blog-example-with-cypress

This is next js simple blog example + cypress

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A statically generated blog example using Next.js, Markdown, and TypeScript

This example contains Cypress with cypress-cucumber-preprocessor.

I will use this repository in my course Cypress for beginners.

Enjoy

Dawid Polakowski => QA Forge

This is the existing blog-starter plus TypeScript.

This example showcases Next.js's Static Generation feature using Markdown files as the data source.

The blog posts are stored in /_posts as Markdown files with front matter support. Adding a new Markdown file in there will create a new blog post.

To create the blog posts we use remark and remark-html to convert the Markdown files into an HTML string, and then send it down as a prop to the page. The metadata of every post is handled by gray-matter and also sent in props to the page.

Install

To install this project simply fallow steps:

  • clone repository
  • cd next-js-blog-example-with-cypress-/
  • npm install -D

Testing

We are using in this project Cypress with Cucumber, so test cases are written in gherking language and are stored inside cypress/integration folder as *.feature files. WE are using PageObjects and external data source, .json file with selectors. This is just showcase so in time I will prepare more test cases.

To run test execution you can:

  1. Run command npx cypress run - this will execute headless mode and give you a fast report
  2. Run command npx cypress open - this will open Cypress GUI and give you a visual preview of test execution with super easy debugger mode just inspect the app page to check what's wrong

You can check sample videos from run in cypress/videos/ folder

Notes

This blog-starter-typescript uses Tailwind CSS. To control the generated stylesheet's filesize, this example uses Tailwind CSS' v2.0 purge option to remove unused CSS.

Tailwind CSS v2.0 no longer supports Node.js 8 or 10. To build your CSS you'll need to ensure you are running Node.js 12.13.0 or higher in both your local and CI environments.

About

This is next js simple blog example + cypress


Languages

Language:TypeScript 71.8%Language:JavaScript 20.4%Language:Gherkin 5.5%Language:CSS 2.3%