Tests on master fail when project is cloned locally
Author: sehnsucht13Created Apr 2, 2021Updated Oct 6, 2021
Describe the bug When the project is cloned from the master branch, one of the test suites fails.
To Reproduce Steps to reproduce the behavior:
- Clone this project
- run
npm install - run
npm run test - Two tests for
src/readme.spec.jsshould fail. They should be:should return readme default template no html contentshould return readme default template content
Expected behavior Tests should not fail when the project is cloned from the master branch.
Desktop (please complete the following information):
- OS: Linux, Manjaro
- Browse Firefox
- Version 86.0
Additional context
The issue seems to be caused by the snapshot README file in src/__snapshots__ folder. The two lines in the file causing the problem are:
Copyright © 2019 [Franck Abgrall](https://github.com/kefranabg).<br />Copyright © 2019 [Franck Abgrall](https://github.com/kefranabg).
One of the offending tests is this one:
it('should return readme default template no html content', async () => {
const result = await buildReadmeContent(
context,
defaultNoHtmlTemplatePath
)
expect(result).toMatchSnapshot()
})It seems like the readme built for test contains a copyright year of 2021 instead of 2019.
Source: kefranabg/readme-md-generator