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

ota-meshi / eslint-plugin-json-schema-validator / 21107985100

18 Jan 2026 07:21AM UTC coverage: 78.196% (-9.2%) from 87.363%
21107985100

Pull #452

github

web-flow
Merge 3cb189b5f into bb8e97af5
Pull Request #452: Bundle using tsdown

717 of 872 branches covered (82.22%)

Branch coverage included in aggregate %.

30 of 51 new or added lines in 7 files covered. (58.82%)

574 existing lines in 11 files now uncovered.

2170 of 2820 relevant lines covered (76.95%)

55.12 hits per line

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

92.31
/src/utils/http-client/sync-http.ts
1
import type { RequestOptions } from "https";
1✔
2
import { createRequire } from "module";
1✔
3
import path from "path";
1✔
4
import { createSyncFn } from "synckit";
1✔
5

4✔
6
const filename = import.meta.filename;
4✔
7
const require = createRequire(filename);
4✔
8
const ext = path.extname(filename);
4✔
9
const getSync = createSyncFn(require.resolve(`./worker${ext}`));
4✔
10

4✔
11
/**
4✔
12
 * Synchronously GET Method
4✔
13
 */
4✔
14
export function syncGet(
4✔
15
  url: string,
19✔
16
  options?: RequestOptions,
19✔
UNCOV
17
  httpModulePath?: string,
×
UNCOV
18
): string {
×
19
  return getSync(url, options, httpModulePath) as string;
4✔
20
}
4✔
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

© 2026 Coveralls, Inc