Skip to content

Commit

Permalink
testing something, do not commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsergio committed Jan 15, 2025
1 parent 377382e commit 57f1fc5
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,14 @@ TEST_CASE("Timer handling" * doctest::timeout(120))
using namespace std::literals::chrono_literals;

CoreApplication app;

{
Timer warmupTimer;
warmupTimer.interval = 100ms;
warmupTimer.running = true;
app.processEvents(200);
}

Timer timer;
timer.interval = 100ms;
timer.running = true;
Expand Down

0 comments on commit 57f1fc5

Please sign in to comment.