Add tests for dates on tooltips
This commit is contained in:
parent
6ae82d5707
commit
340aa444b7
2 changed files with 48 additions and 2 deletions
|
@ -79,10 +79,10 @@
|
|||
%li.js-contributed-tab
|
||||
= link_to user_contributed_projects_path, data: {target: 'div#contributed', action: 'contributed', toggle: 'tab'} do
|
||||
Contributed projects
|
||||
%li.projects-tab
|
||||
%li.js-projects-tab
|
||||
= link_to user_projects_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do
|
||||
Personal projects
|
||||
%li.snippets-tab
|
||||
%li.js-snippets-tab
|
||||
= link_to user_snippets_path, data: {target: 'div#snippets', action: 'snippets', toggle: 'tab'} do
|
||||
Snippets
|
||||
|
||||
|
|
46
spec/features/dashboard/datetime_on_tooltips_spec.rb
Normal file
46
spec/features/dashboard/datetime_on_tooltips_spec.rb
Normal file
|
@ -0,0 +1,46 @@
|
|||
require 'spec_helper'
|
||||
|
||||
feature 'Tooltips on .timeago dates', feature: true, js: true do
|
||||
include WaitForAjax
|
||||
|
||||
let(:user) { create(:user) }
|
||||
let(:project) { create(:project, name: 'test', namespace: user.namespace) }
|
||||
let(:created_date) { Date.yesterday.to_time }
|
||||
let(:expected_format) { created_date.strftime('%b %d, %Y %l:%M%P UTC') }
|
||||
|
||||
context 'on the activity tab' do
|
||||
before do
|
||||
project.team << [user, :master]
|
||||
|
||||
Event.create( project: project, author_id: user.id, action: Event::JOINED,
|
||||
updated_at: created_date, created_at: created_date)
|
||||
|
||||
login_as user
|
||||
visit user_path(user)
|
||||
wait_for_ajax()
|
||||
|
||||
page.find('.js-timeago').hover
|
||||
end
|
||||
|
||||
it 'has the datetime formated correctly' do
|
||||
expect(page).to have_selector('.local-timeago', text: expected_format)
|
||||
end
|
||||
end
|
||||
|
||||
context 'on the snippets tab' do
|
||||
before do
|
||||
project.team << [user, :master]
|
||||
create(:snippet, author: user, updated_at: created_date, created_at: created_date)
|
||||
|
||||
login_as user
|
||||
visit user_snippets_path(user)
|
||||
wait_for_ajax()
|
||||
|
||||
page.find('.js-timeago').hover
|
||||
end
|
||||
|
||||
it 'has the datetime formated correctly' do
|
||||
expect(page).to have_selector('.local-timeago', text: expected_format)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue