🎨 format code

This commit is contained in:
Tw93
2025-08-14 11:20:15 +08:00
parent 7adeb91ae9
commit 256cdc77ee
12 changed files with 745 additions and 639 deletions

View File

@@ -154,7 +154,7 @@ runner.addTest(
// Test logic here
return true; // or false
},
"Test description"
"Test description",
);
```
@@ -168,7 +168,7 @@ runner.addTest(
// Async test logic
return await someAsyncOperation();
},
TIMEOUTS.MEDIUM
TIMEOUTS.MEDIUM,
);
```