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

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

18 Jan 2026 06:50AM UTC coverage: 35.106% (-52.3%) from 87.363%
21107618411

Pull #452

github

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

177 of 507 branches covered (34.91%)

Branch coverage included in aggregate %.

8 of 19 new or added lines in 4 files covered. (42.11%)

518 existing lines in 13 files now uncovered.

338 of 960 relevant lines covered (35.21%)

9.53 hits per line

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

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

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

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