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

Inist-CNRS / ezs / 9129406889

17 May 2024 01:57PM UTC coverage: 95.403% (+0.003%) from 95.4%
9129406889

Pull #411

github

web-flow
Merge 503f2ab65 into e4ccd1adc
Pull Request #411: fix: 🐛 avoid useless debug message

2248 of 2435 branches covered (92.32%)

Branch coverage included in aggregate %.

13 of 13 new or added lines in 1 file covered. (100.0%)

4621 of 4765 relevant lines covered (96.98%)

54540.6 hits per line

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

77.78
/packages/transformers/src/operations/SELECT.js
1
import { get } from 'lodash';
2
import { rawTransformerWithArg } from './transformer';
3

4
export const select = (value, path) => {
165✔
5
    if (!value) {
25!
6
        return '';
×
7
    }
8
    return get(value, path, '');
25✔
9
};
10

11
const transformation = (_, args) => value =>
165✔
12
    rawTransformerWithArg(select, 'path', value, args);
20✔
13

14
transformation.getMetas = () => ({
165✔
15
    name: 'SELECT',
16
    type: 'transform',
17
    args: [{ name: 'path', type: 'string' }],
18
});
19

20
export default transformation;
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