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

naver / egjs-flicking / 10557177632

26 Aug 2024 09:22AM UTC coverage: 38.327% (-44.5%) from 82.855%
10557177632

Pull #886

github

daybrush
fix: recalculate camera offset
Pull Request #886: fix: recalculate camera offset

2039 of 7372 branches covered (27.66%)

Branch coverage included in aggregate %.

11 of 29 new or added lines in 2 files covered. (37.93%)

5575 existing lines in 46 files now uncovered.

5099 of 11252 relevant lines covered (45.32%)

10.91 hits per line

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

92.86
/test/unit/setup.ts
1
(window as any)._real = {
1✔
2
  setTimeout: (window as any).setTimeout.bind((window as any)),
3
};
4

1✔
5
(window as any).timer = sinon.useFakeTimers();
1✔
6
(window as any).flickings = [];
1✔
7

1✔
8
beforeEach(() => {
9
  (window as any).timer.reset();
1✔
10
});
1✔
11

1✔
12
afterEach(() => {
13
  (window as any).flickings.forEach(flicking => {
1✔
14
    flicking.destroy();
1✔
15
  });
16
  (window as any).flickings = [];
1✔
17
  cleanup();
1✔
18
});
1✔
UNCOV
19

×
20
const cleanup = () => {
21
  const elements = [].slice.call(document.querySelectorAll("._tempSandbox_"));
22
  elements.forEach(v => {
23
    v.parentNode.removeChild(v);
24
  });
25
};
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