10 lines
254 B
Text
10 lines
254 B
Text
<% if Rails.env.test? %>
|
|
//= require timemachine.js
|
|
|
|
// Ensure that locale time in JavaScript matches the Timezone on
|
|
// our server during testing
|
|
timemachine.config({
|
|
dateString: '<%= Time.current.iso8601 %>',
|
|
tick: true
|
|
});
|
|
<% end %>
|