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

HuolalaTech / page-spy / 9157411946

20 May 2024 10:36AM CUT coverage: 55.918% (-7.1%) from 63.012%
9157411946

Pull #87

github

web-flow
Merge 5e7da0d6b into 12069874f
Pull Request #87: React Native sdk

1353 of 1530 branches covered (88.43%)

Branch coverage included in aggregate %.

69 of 1501 new or added lines in 20 files covered. (4.6%)

2 existing lines in 1 file now uncovered.

5530 of 10779 relevant lines covered (51.3%)

28.21 hits per line

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

30.77
/packages/page-spy-react-native/src/helpers/blob.ts
NEW
1
export const blob2base64Async = (blob: Blob) => {
×
NEW
2
  return new Promise((resolve, reject) => {
×
NEW
3
    const fr = new FileReader();
×
NEW
4
    fr.onload = (e) => {
×
NEW
5
      resolve(e.target?.result);
×
NEW
6
    };
×
7
    /* c8 ignore next 3 */
2✔
8
    fr.onerror = () => {
2✔
9
      reject(new Error('blob2base64Async: can not convert'));
2✔
10
    };
2✔
NEW
11
    fr.readAsDataURL(blob);
×
NEW
12
  });
×
NEW
13
};
×
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