From 788a1e517a95115e82e9a0fe6eae78e90a9ff489 Mon Sep 17 00:00:00 2001 From: Frank Steiler Date: Sat, 4 Nov 2023 15:47:31 +0000 Subject: [PATCH] Increasing execution padding --- app/test/unit/app.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/unit/app.test.ts b/app/test/unit/app.test.ts index 413f0b6a..84cd8380 100644 --- a/app/test/unit/app.test.ts +++ b/app/test/unit/app.test.ts @@ -424,7 +424,7 @@ describe(`App control flow`, () => { describe(`Daemon App`, () => { describe(`Scheduling`, () => { // Fake timers don't work with croner, so we need to wait actual time - const executionPadding = 100; // Waiting for the croner execution to finish, in ms + const executionPadding = 300; // Waiting for the croner execution to finish, in ms test(`Run single scheduled job`, async () => { const daemonApp = await appFactory(validOptions.daemon) as DaemonApp;