All files / web/src/lib/audio/clips practice.ts

100% Statements 25/25
100% Branches 0/0
100% Functions 0/0
100% Lines 25/25

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 261x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { audioClip } from '../audioClipRegistry'
 
export const GAME_BREAK_TIME = audioClip(
  'practice-game-break-time',
  'Woo-hoo! Time for a game!',
  'celebration'
)
export const GAME_BREAK_EARNED = audioClip(
  'practice-game-break-earned',
  "You've been working so hard — you earned a game break!",
  'celebration'
)
export const PICK_A_GAME = audioClip(
  'practice-pick-a-game',
  'Pick a game! Which one looks fun?',
  'tutorial-instruction'
)
export const BACK_TO_PRACTICE = audioClip(
  'practice-back-to-practice',
  "Okay, back to math! Let's do this!",
  'tutorial-instruction'
)
 
/** Announcement clips for game break start — randomly selected */
export const GAME_BREAK_ANNOUNCEMENT_CLIPS = [GAME_BREAK_TIME, GAME_BREAK_EARNED] as const