Skip to content

Commit

Permalink
Merge pull request #156 from reportportal/develop
Browse files Browse the repository at this point in the history
Release 5.1.11
  • Loading branch information
AmsterGet authored Sep 23, 2024
2 parents 37efc06 + 0f39c7e commit 01e6c5c
Show file tree
Hide file tree
Showing 22 changed files with 1,165 additions and 1,159 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Changed
- The agent now supports reporting the time for launches, test items and logs with microsecond precision in the ISO string format.
For logs, microsecond precision is available on the UI from ReportPortal version 24.2.
- `@reportportal/client-javascript` bumped to version `5.3.0`.

## [5.1.10] - 2024-09-17
### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.10
5.1.11-SNAPSHOT
15 changes: 7 additions & 8 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@

module.exports = {
roots: ['<rootDir>/src'],
transform: { '.(ts|tsx)': 'ts-jest' },
transform: {
'.ts': ['ts-jest', {
diagnostics: {
pathRegex: '(/__tests__/.*?\\.(test|spec))\\.(ts|js)$',
},
}],
},
testEnvironment: 'node',
testRegex: '/__tests__/.*\\.(test|spec)?\\.(ts|js)$',
moduleFileExtensions: ['ts', 'js'],
Expand All @@ -31,11 +37,4 @@ module.exports = {
statements: 80,
},
},
globals: {
'ts-jest': {
diagnostics: {
pathRegex: '(/__tests__/.*?\\.(test|spec))\\.(ts|js)$',
},
},
},
};
Loading

0 comments on commit 01e6c5c

Please sign in to comment.