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

mongodb-js / devtools-shared / 16048988276

03 Jul 2025 11:17AM UTC coverage: 72.545%. First build
16048988276

Pull #558

github

lerouxb
fallback directoryExists to true, not false
Pull Request #558: fix(ts-autocomplete): fallback directoryExists to true, not false

1502 of 2355 branches covered (63.78%)

Branch coverage included in aggregate %.

1 of 2 new or added lines in 1 file covered. (50.0%)

3249 of 4194 relevant lines covered (77.47%)

592.85 hits per line

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

16.67
/packages/monorepo-tools/src/utils/with-progress.ts
1
import ora from 'ora';
1✔
2

3
export async function withProgress<
1✔
4
  Fn extends (this: ora.Ora, ...args: any[]) => any,
5
>(text: string, fn: Fn, ...args: Parameters<Fn>): Promise<ReturnType<Fn>> {
6
  const spinner = ora(text).start();
×
7
  try {
×
8
    const result = await fn.call(spinner, ...args);
×
9
    spinner.succeed();
×
10
    return result;
×
11
  } catch (e) {
12
    if (spinner.isSpinning) {
×
13
      spinner.fail();
×
14
    }
15
    throw e;
×
16
  }
17
}
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