From a5147186b18b41ccd20275971f8720200ecac121 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 7 Jul 2026 23:49:54 -0700 Subject: [PATCH] Update the bowling proof to pass with node 24 --- exercises/practice/bowling/.meta/proof.ci.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/practice/bowling/.meta/proof.ci.ts b/exercises/practice/bowling/.meta/proof.ci.ts index bca3fa1b8..1d3055902 100644 --- a/exercises/practice/bowling/.meta/proof.ci.ts +++ b/exercises/practice/bowling/.meta/proof.ci.ts @@ -17,6 +17,8 @@ export class Bowling { this.frames = [] this.frameScores = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + this.frameRoll = 1 + this.remainingPins = this.maxPins this.initializeFrame() }