Skip to content

Commit 3953d64

Browse files
committed
chore: add basic log when initializing test
1 parent b806179 commit 3953d64

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

frontend/src/ts/test/test-logic.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,21 @@ export async function init(): Promise<void> {
464464
console.debug("Custom text", CustomText.getData());
465465
}
466466

467+
console.log("Inializing test", {
468+
language: {
469+
...language,
470+
words: `${language.words.length} words`,
471+
},
472+
customText: {
473+
...CustomText.getData(),
474+
text: `${CustomText.getText().length} words`,
475+
},
476+
mode: Config.mode,
477+
mode2: Misc.getMode2(Config, null),
478+
funbox: Config.funbox,
479+
currentQuote: TestWords.currentQuote,
480+
});
481+
467482
let generatedWords: string[];
468483
let generatedSectionIndexes: number[];
469484
let wordsHaveTab = false;

0 commit comments

Comments
 (0)