Read more

Timecop: reset after each test

Daniel Straßner
January 11, 2023Software engineer at makandra GmbH

Timecop Show archive.org snapshot is a great gem to set the current time in tests. However, it is easy to introduce flakyness to your test suite when you forget to reset the time after the test.
This might be the case if:

  • a test freezes time and a later test does not work for frozen time
  • a later test needs the real current date to work correctly
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

Often you only notice these kinds of errors in rare cases when tests are executed in a particular order.

A way to avoid this is by using block notation (Timecop.travel(...) do) as this will automatically reset the time after the block.

My advice is to generally reset manipulated time after each test, so a developer can never forget to clean up.

reset after each spec

Reset after each spec by putting this to your spec_helper.rb:

config.after(:each) do
  Timecop.return
end

reset after each feature

Put this to something like features/support/timecop.rb or features/step_definitions/time_steps.rb

After do
  Timecop.return
end
Posted by Daniel Straßner to makandra dev (2023-01-11 11:21)