File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,7 +56,10 @@ function runTests(): VitestResult {
5656 return JSON . parse ( raw . slice ( start ) ) as VitestResult ;
5757}
5858
59- function mapTestToSop ( testName : string , fullName : string ) : { sop ?: string ; proseId ?: string } {
59+ function mapTestToSop (
60+ testName : string ,
61+ fullName : string
62+ ) : { sop ?: string ; proseId ?: string } {
6063 const mapping : Record < string , { sop : string ; proseId : string } > = {
6164 'active frame stack remains consistent' : {
6265 sop : 'SOP-101 Frame Lifecycle' ,
@@ -109,7 +112,9 @@ function main(): void {
109112 process . exit ( 1 ) ;
110113 }
111114
112- console . log ( `Test run complete: ${ result . numPassedTests ?? 0 } passed, ${ result . numFailedTests ?? 0 } failed` ) ;
115+ console . log (
116+ `Test run complete: ${ result . numPassedTests ?? 0 } passed, ${ result . numFailedTests ?? 0 } failed`
117+ ) ;
113118
114119 const db = new Database ( dbPath ) ;
115120 try {
You can’t perform that action at this time.
0 commit comments