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

Freegle / iznik-nuxt3 / c116036c-55fb-4d4e-a732-06fbe0906fc1

13 Oct 2025 12:31PM UTC coverage: 34.681% (-11.0%) from 45.694%
c116036c-55fb-4d4e-a732-06fbe0906fc1

push

circleci

edwh
Migrate logo API call from v1 to v2

1053 of 3928 branches covered (26.81%)

Branch coverage included in aggregate %.

0 of 1 new or added line in 1 file covered. (0.0%)

723 existing lines in 55 files now uncovered.

2722 of 6957 relevant lines covered (39.13%)

38.05 hits per line

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

20.0
/api/LocationAPI.js
1
import BaseAPI from '@/api/BaseAPI'
2

3
export default class LocationAPI extends BaseAPI {
6✔
4
  typeahead(query) {
5
    return this.$getv2('/location/typeahead?q=' + encodeURIComponent(query))
3✔
6
  }
7

8
  latlng(lat, lng) {
9
    return this.$getv2('/location/latlng', {
×
10
      lat,
11
      lng,
12
    })
13
  }
14

15
  fetch(params) {
16
    return this.$get('/locations', params)
×
17
  }
18

19
  fetchv2(id) {
UNCOV
20
    return this.$getv2('/location/' + id)
×
21
  }
22

23
  fetchAddresses(id) {
24
    return this.$getv2('/location/' + id + '/addresses')
×
25
  }
26

27
  add(data) {
28
    return this.$put('/locations', data)
×
29
  }
30

31
  update(data) {
32
    return this.$patch('/locations', data)
×
33
  }
34

35
  del(id, groupid) {
36
    return this.$post('/locations', {
×
37
      id,
38
      action: 'Exclude',
39
      byname: false,
40
      groupid,
41
    })
42
  }
43

44
  convertKML(kml) {
45
    return this.$post('/locations/kml', {
×
46
      action: 'ConvertKML',
47
      kml,
48
    })
49
  }
50
}
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