mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-27 10:08:11 +08:00
Fix tests
This commit is contained in:
parent
dfe3c5292e
commit
2e88f194bc
5 changed files with 11 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
/* global ListColumnHelper ChecklistColumnHelper Status SmartAnnotation I18n GLOBAL_CONSTANTS DateTimeHelper formatJS */
|
||||
/* global ListColumnHelper ChecklistColumnHelper Status SmartAnnotation I18n GLOBAL_CONSTANTS DateTimeHelper */
|
||||
|
||||
$.fn.dataTable.render.newRowName = function(formId, $cell) {
|
||||
$cell.html(`
|
||||
|
|
|
@ -20,7 +20,7 @@ describe RepositoryDateRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10).to_s,
|
||||
end_time: Time.utc(2000, 10, 12).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -33,7 +33,7 @@ describe RepositoryDateRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10).to_s,
|
||||
end_time: Time.utc(2000, 10, 11, 4, 11).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -57,7 +57,7 @@ describe RepositoryDateRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.now.utc.to_s,
|
||||
end_time: (Time.now.utc + 1.day).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
|
|
@ -35,7 +35,7 @@ describe RepositoryDateTimeRangeValueBase, type: :model do
|
|||
{
|
||||
start_time: Time.now.utc.to_s,
|
||||
end_time: (Time.zone.now + 2.days).utc.to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
context 'when update data' do
|
||||
|
|
|
@ -20,7 +20,7 @@ describe RepositoryDateTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10).to_s,
|
||||
end_time: Time.utc(2000, 10, 12).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -33,7 +33,7 @@ describe RepositoryDateTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10).to_s,
|
||||
end_time: Time.utc(2000, 10, 11).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -57,7 +57,7 @@ describe RepositoryDateTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.now.utc.to_s,
|
||||
end_time: (Time.now.utc + 1.day).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
|
|
@ -20,7 +20,7 @@ describe RepositoryTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10, 12, 13).to_s,
|
||||
end_time: Time.utc(2000, 10, 12, 4, 11).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -33,7 +33,7 @@ describe RepositoryTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.utc(2000, 10, 10).to_s,
|
||||
end_time: Time.utc(2012, 10, 14, 4, 11).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
@ -57,7 +57,7 @@ describe RepositoryTimeRangeValue, type: :model do
|
|||
{
|
||||
start_time: Time.now.utc.to_s,
|
||||
end_time: (Time.now.utc + 1.day).to_s
|
||||
}
|
||||
}.to_json
|
||||
end
|
||||
|
||||
it do
|
||||
|
|
Loading…
Reference in a new issue