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

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

07 Jun 2025 04:00PM UTC coverage: 87.33%. Remained the same
15509456335

Pull #371

github

web-flow
Merge 6eb844245 into 6fa634a04
Pull Request #371: chore(deps): update dependency vue-eslint-parser to v10

372 of 455 branches covered (81.76%)

Branch coverage included in aggregate %.

910 of 1013 relevant lines covered (89.83%)

178.84 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

© 2025 Coveralls, Inc