• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mongodb-js / devtools-shared / 14645267324

24 Apr 2025 03:16PM UTC coverage: 72.362%. First build
14645267324

Pull #529

github

gagik
fix: add types to package.json
Pull Request #529: feat: add async device ID retrieval COMPASS-8443

1460 of 2285 branches covered (63.89%)

Branch coverage included in aggregate %.

14 of 14 new or added lines in 1 file covered. (100.0%)

3093 of 4007 relevant lines covered (77.19%)

636.16 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/packages/monorepo-tools/src/utils/find-monorepo-root.ts
1
import findUp from 'find-up';
1✔
2
import path from 'path';
1✔
3

4
export async function findMonorepoRoot() {
1✔
5
  const packagePath = await findUp('package-lock.json');
×
6
  if (!packagePath) {
×
7
    throw new Error('Could not find monorepo root package-lock file');
×
8
  }
9
  return path.dirname(packagePath);
×
10
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc