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

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

04 Apr 2025 01:07AM UTC coverage: 87.338%. Remained the same
14255848708

Pull #371

github

web-flow
Merge 17d1eb549 into 327e06fbd
Pull Request #371: chore(deps): update dependency vue-eslint-parser to v10

372 of 455 branches covered (81.76%)

Branch coverage included in aggregate %.

911 of 1014 relevant lines covered (89.84%)

174.61 hits per line

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

71.43
/src/utils/http-client/http.ts
1
import type { RequestOptions } from "https";
6✔
2

3
/**
4
 * GET Method
5
 */
6
export function get(
7
  url: string,
8
  options?: RequestOptions,
9
  httpModulePath?: string,
10
): Promise<string> {
11
  const client = httpModulePath
3!
12
    ? // eslint-disable-next-line @typescript-eslint/no-require-imports -- ignore
13
      require(httpModulePath)
14
    : // eslint-disable-next-line @typescript-eslint/no-require-imports -- ignore
15
      require("./get-modules/http");
16
  return client.default ? client.default(url, options) : client(url, options);
3!
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

© 2026 Coveralls, Inc