We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56880cd commit 46a5cecCopy full SHA for 46a5cec
1 file changed
packages/codegen/src/runner.test.ts
@@ -67,7 +67,9 @@ describe('runCMKInWatchMode', () => {
67
68
console.log('update file');
69
await writeFile(textFilePath, '1');
70
+ const startTime = Date.now();
71
await waitFor(() => {
72
+ console.log('elapsed', Date.now() - startTime);
73
assert(globalThis.changeCount === 1, `Expected changeCount to be 1, but got ${globalThis.changeCount}`);
74
});
75
0 commit comments