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

ialopezg / corejs / #5

03 Nov 2023 08:38PM UTC coverage: 42.153% (-47.5%) from 89.623%
#5

push

ialopezg
feat: add microservice feature

10 of 84 branches covered (0.0%)

Branch coverage included in aggregate %.

49 of 77 new or added lines in 20 files covered. (63.64%)

155 existing lines in 21 files now uncovered.

221 of 464 relevant lines covered (47.63%)

0.51 hits per line

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

75.0
/src/errors/exceptions/invalid-module-configuration.exception.ts
1
import { RuntimeException } from './runtime.exception';
1✔
2
import { getInvalidModuleConfigMessage } from '../messages';
1✔
3

4
/**
5
 * Represents an error when the annotation has invalid configuration.
6
 */
7
export class InvalidModuleConfigurationException extends RuntimeException {
1✔
8
  /**
9
   * Creates a new instance of InvalidModuleConfigurationException class.
10
   *
11
   * @param {string} property Module property name.
12
   */
13
  constructor(property: string) {
UNCOV
14
    super(getInvalidModuleConfigMessage(property));
×
15
  }
16
}
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