Skip to content

Commit d0bf56e

Browse files
author
StackMemory Bot (CLI)
committed
chore: fix prettier formatting in log-prose-results.ts
1 parent e9518ff commit d0bf56e

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

scripts/log-prose-results.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)