From 12e3223acdc6b13cf6bded23d707edb8f840a721 Mon Sep 17 00:00:00 2001 From: SK027 Date: Mon, 25 Nov 2024 16:19:21 +0530 Subject: [PATCH] CR comment Nitpick Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6db75f8f21..72f4ca18b5 100644 --- a/README.md +++ b/README.md @@ -210,11 +210,12 @@ After running the tests, you can view the test coverage report by following thes - Open the generated `index.html` file present in the `app/coverage/index.html`. - Metrics Explanation: - In this file, you will see 4 metrics for the files you have changed: - - Statements: Percentage of executed statements. - - Branches: Percentage of executed branches (e.g., conditions in if, else, switch statements, `&&`, `||`, `?` operators used). - - Functions: Percentage of executed functions. - - Lines: Percentage of executed lines of code. +In this file, you will see 4 metrics for the files you have changed: + +* **Statements**: Percentage of executed statements +* **Branches**: Percentage of executed branches (e.g., conditions in if, else, switch statements, `&&`, `||`, `?` operators) +* **Functions**: Percentage of executed functions +* **Lines**: Percentage of executed lines of code - To increase code coverage, write additional test cases to cover the missing metrics.