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

LouisBrunner / dnd-multi-backend / 7105545454

05 Dec 2023 07:21PM UTC coverage: 98.498%. Remained the same
7105545454

push

github

web-flow
chore(deps-dev): bump @typescript-eslint/parser from 6.13.0 to 6.13.2 (#236)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.13.0 to 6.13.2.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.13.2/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

63 of 67 branches covered (0.0%)

Branch coverage included in aggregate %.

265 of 266 relevant lines covered (99.62%)

37.11 hits per line

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

100.0
/packages/dnd-multi-backend/src/transitions.ts
1
import { createTransition } from './createTransition'
84✔
2

3
export const TouchTransition = createTransition('touchstart', (rawEvent: Event) => {
6✔
4
  const event = rawEvent as TouchEvent
6✔
5
  return event.touches !== null && event.touches !== undefined
6✔
6
})
7

8
export const HTML5DragTransition = createTransition('dragstart', (event) => {
6✔
9
  return event.type.indexOf('drag') !== -1 || event.type.indexOf('drop') !== -1
9✔
10
})
11

12
export const MouseTransition = createTransition('mousedown', (event) => {
6✔
13
  return event.type.indexOf('touch') === -1 && event.type.indexOf('mouse') !== -1
9✔
14
})
15

16
export const PointerTransition = createTransition('pointerdown', (rawEvent: Event) => {
6✔
17
  const event = rawEvent as PointerEvent
12✔
18
  return event.pointerType == 'mouse'
12✔
19
})
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