From 7854c1839f91bb820e99232193a9f4c440b77dab Mon Sep 17 00:00:00 2001 From: Ilya Hancharyk Date: Mon, 15 Jul 2024 20:00:05 +0200 Subject: [PATCH] Fix linter errors. Update changelog --- CHANGELOG.md | 6 ++++-- jest.config.js | 5 +---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdb8a42..67a95a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,18 @@ ### Added - Logging link to the launch on its finish now available by default. ### Changed -- **Breaking change** Drop support of Node.js 10, 12. The version [5.0.3](https://github.com/reportportal/agent-js-jasmine/releases/tag/v5.0.3) is the latest that supports it. +- **Breaking change** Drop support of Node.js 10. The version [5.0.3](https://github.com/reportportal/agent-js-jasmine/releases/tag/v5.0.3) is the latest that supports it. - `@reportportal/client-javascript` bumped to version `5.1.4`, new `launchUuidPrintOutput` types introduced: 'FILE', 'ENVIRONMENT'. ### Security - Updated versions of vulnerable packages (braces). +### Deprecated +- Node.js 12 usage. This minor version is the latest that supports Node.js 12. ## [5.0.3] - 2024-01-19 ### Changed - `@reportportal/client-javascript` bumped to version `5.0.15`, `launchUuidPrint` and `launchUuidPrintOutput` configuration options introduced. ### Deprecated -- Node.js 10, 12 usage. This version is the latest that supports Node.js 10, 12. +- Node.js 10 usage. This minor version is the latest that supports Node.js 10. ### Fixed - [#86](https://github.com/reportportal/agent-js-jasmine/issues/86) `DEBUG` mode has no effect. diff --git a/jest.config.js b/jest.config.js index effa92f..268906d 100644 --- a/jest.config.js +++ b/jest.config.js @@ -17,10 +17,7 @@ module.exports = { moduleFileExtensions: ['js'], testRegex: '/__tests__/.*\\.spec.(js)$', - collectCoverageFrom: [ - 'lib/**', - '!lib/constants/**' - ], + collectCoverageFrom: ['lib/**', '!lib/constants/**'], coverageThreshold: { global: { branches: 80,