- Open the forked repo in VSCode.
- Create a new branch: git checkout -b added_article_test
- Run the installation commands
npm ci
&npx playwright install
.
- Create parametrized tests for 1, 2 and 5 tags:
- User is able to remove all tags from previoulsy created artcile.
- User is able to add tags on edit to the previousy created article.
- Use as an example
createArticleWithTags.spec.js
.
- Create three-users' test with parametrized fixtures
pages
andusers
.
- User can see in Your feeds articles from two other users.
- Use as an example
viewArticleCreatedByAnotherUser.spec.js
- Re-run all your tests and make sure they pass after the updates.
- Add and commit all your updates.
- Push the code to the origin.
- Create PR for your changes.
- Fix all the suggestions from the Code review until PR is approved.