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

u-wave / core / 19327648999

13 Nov 2025 09:59AM UTC coverage: 85.015%. First build
19327648999

Pull #657

github

web-flow
Merge bb29c4618 into cc369fe03
Pull Request #657: SQLite Key-value store to replace Redis

953 of 1129 branches covered (84.41%)

Branch coverage included in aggregate %.

173 of 228 new or added lines in 7 files covered. (75.88%)

10002 of 11757 relevant lines covered (85.07%)

92.34 hits per line

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

55.0
/src/utils/skipIfCurrentDJ.js
1
/**
1✔
2
 * @param {import('../Uwave.js').default} uw
1✔
3
 */
1✔
4
function getCurrentDJ(uw) {
×
NEW
5
  return uw.keyv.get('booth:currentDJ');
×
6
}
×
7

1✔
8
/**
1✔
9
 * @param {import('../Uwave.js').default} uw
1✔
10
 * @param {import('../schema.js').UserID} userID
1✔
11
 */
1✔
12
async function skipIfCurrentDJ(uw, userID) {
×
13
  const currentDJ = await getCurrentDJ(uw);
×
14
  if (userID.toString() === currentDJ) {
×
15
    await uw.booth.advance({ remove: true });
×
16
  }
×
17
}
×
18

1✔
19
export default skipIfCurrentDJ;
1✔
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