From 68b316a730b5d9e806767e93b27c89bf2277d927 Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:17:28 +0500 Subject: [PATCH 1/9] Update package.json --- package.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/package.json b/package.json index 8685003a..1786e3f9 100644 --- a/package.json +++ b/package.json @@ -22,4 +22,19 @@ "scripts": { "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" } + { + "name": "continuous-test-code-coverage-guide", + "scripts": { + "start": "webpack", + "test": "jest --coverage --coverageDirectory=output/coverage/jest" + }, + ... + "jest": { + "coverageReporters": [ + "text", + "cobertura" + ] + ... + } +} } From 4de9fab4cb1e84c1e69a19608ca332309384ec9f Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:18:20 +0500 Subject: [PATCH 2/9] Update package.json --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index 1786e3f9..69b3f57a 100644 --- a/package.json +++ b/package.json @@ -21,20 +21,18 @@ }, "scripts": { "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" - } + }, { "name": "continuous-test-code-coverage-guide", "scripts": { "start": "webpack", "test": "jest --coverage --coverageDirectory=output/coverage/jest" }, - ... "jest": { "coverageReporters": [ "text", "cobertura" ] - ... } } } From a17e5cfe60f0c649bd50cc9b87665f2c394f5f9c Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:21:25 +0500 Subject: [PATCH 3/9] Update package.json --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 69b3f57a..0036de7b 100644 --- a/package.json +++ b/package.json @@ -28,11 +28,14 @@ "start": "webpack", "test": "jest --coverage --coverageDirectory=output/coverage/jest" }, + ... "jest": { "coverageReporters": [ "text", "cobertura" ] + ... } } } +} From 26e53f7a229b01a2bc181e39365e9df7324eba55 Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:22:48 +0500 Subject: [PATCH 4/9] Update package.json --- package.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/package.json b/package.json index 0036de7b..8685003a 100644 --- a/package.json +++ b/package.json @@ -21,21 +21,5 @@ }, "scripts": { "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" - }, - { - "name": "continuous-test-code-coverage-guide", - "scripts": { - "start": "webpack", - "test": "jest --coverage --coverageDirectory=output/coverage/jest" - }, - ... - "jest": { - "coverageReporters": [ - "text", - "cobertura" - ] - ... } } -} -} From 9d2f18cc9cb654399c395caf86045304e1d104a0 Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:23:48 +0500 Subject: [PATCH 5/9] Update package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 8685003a..7e192a12 100644 --- a/package.json +++ b/package.json @@ -21,5 +21,6 @@ }, "scripts": { "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" + "test": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" } } From 4923edb8420252e09f94e5f17a7eebb9c95a158a Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:25:56 +0500 Subject: [PATCH 6/9] Update package.json --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e192a12..f115591e 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "nyc": "^12.0.2" }, "scripts": { + "test ": "mocha", "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" - "test": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" + } } From 00a7926a0bc414202db0ee442fd69576f6b28dde Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:30:38 +0500 Subject: [PATCH 7/9] Update package.json --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f115591e..65804800 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,9 @@ "nyc": "^12.0.2" }, "scripts": { - "test ": "mocha", + "build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml" + } } From 777f522abf8da3cd2c14fce1f9c4ba2f6a1a8e3d Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Wed, 25 Oct 2023 13:26:12 +0500 Subject: [PATCH 8/9] Create file --- file | 1 + 1 file changed, 1 insertion(+) create mode 100644 file diff --git a/file b/file new file mode 100644 index 00000000..699db65d --- /dev/null +++ b/file @@ -0,0 +1 @@ +This is my test file From 1c96958fee030e7bf73cbd9e2bd7f6c19655da06 Mon Sep 17 00:00:00 2001 From: AtharSheikh9 <141035039+AtharSheikh9@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:09:52 +0500 Subject: [PATCH 9/9] Create athar --- athar | 1 + 1 file changed, 1 insertion(+) create mode 100644 athar diff --git a/athar b/athar new file mode 100644 index 00000000..b63993e9 --- /dev/null +++ b/athar @@ -0,0 +1 @@ +hello i am athar