diff --git a/README.md b/README.md index 48365ef..3ecb0e4 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/jest.config.base.cjs b/jest.config.base.cjs index 187e86d..38014d4 100644 --- a/jest.config.base.cjs +++ b/jest.config.base.cjs @@ -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, }, }, };