Skip to content

Commit

Permalink
adjust coverage requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Jan 8, 2025
1 parent 237d789 commit 2a10e0d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Built and supported by [PhotoStructure](https://photostructure.com).
## Features

- Cross-platform support:
- Windows 10+ (x64, arm64)
- macOS 14+ (x64, arm64)
- Ubuntu 22+ (x64, arm64) (with Gnome GIO/`GVfs` mount support when available)
- Windows 10+ (x64)
- macOS 14+
- Ubuntu 22+ (x64, arm64) (with Gnome GIO/`GVfs` mount support where available)

- [List all mounted volumes/drives](https://photostructure.github.io/fs-metadata/functions/getVolumeMountPoints.html)

Expand Down
16 changes: 11 additions & 5 deletions jest.config.base.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,19 @@ const baseConfig = {
],
coverageThreshold: {
// As of 20250106 on linux:
// | % Stmts | % Branch | % Funcs | % Lines
// | 93.63 | 87.05 | 91.86 | 93.63
// % Stmts | % Branch | % Funcs | % Lines
// 93.63 | 87.05 | 91.86 | 93.63
// As of 20250106 on darwin:
// % Stmts | % Branch | % Funcs | % Lines
// 85.91 | 84.03 | 88.69 | 85.91
// As of 20250106 on windows:
// % Stmts | % Branch | % Funcs | % Lines
// 85.91 | 84.03 | 88.69 | 85.91
global: {
statements: 85,
statements: 80,
branches: 80,
functions: 85,
lines: 86,
functions: 80,
lines: 80,
},
},
};
Expand Down

0 comments on commit 2a10e0d

Please sign in to comment.