Skip to content

Commit

Permalink
EPMRPP-94905 || Time with microseconds support (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmsterGet authored Sep 23, 2024
1 parent e1dda43 commit 0f39c7e
Show file tree
Hide file tree
Showing 21 changed files with 1,164 additions and 1,158 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
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 0f39c7e

Please sign in to comment.