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

kiva / ui / 27178105591

09 Jun 2026 01:32AM UTC coverage: 84.37%. First build
27178105591

Pull #6966

github

web-flow
Merge f59fb0548 into df03cffb4
Pull Request #6966: feat: multi matching for loan cards

4927 of 5401 branches covered (91.22%)

Branch coverage included in aggregate %.

11 of 21 new or added lines in 3 files covered. (52.38%)

39785 of 47594 relevant lines covered (83.59%)

36.46 hits per line

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

30.77
/src/composables/useMultiMatching.js
1
import { ref, inject } from 'vue';
1✔
2
import multiMatchingQuery from '#src/graphql/query/multiMatchingEnabled.graphql';
1✔
3
import { readBoolSetting } from '#src/util/settingsUtils';
1✔
4

5
export default function useMultiMatching() {
1✔
NEW
6
        const apollo = inject('apollo');
×
NEW
7
        const enableMultiMatching = ref(false);
×
NEW
8
        if (apollo) {
×
NEW
9
                apollo.query({ query: multiMatchingQuery }).then(({ data }) => {
×
NEW
10
                        enableMultiMatching.value = readBoolSetting(data, 'general.multiMatchingEnabled.value') ?? false;
×
NEW
11
                }).catch(() => {});
×
NEW
12
        }
×
NEW
13
        return { enableMultiMatching };
×
NEW
14
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc