Commit 58c3ab83 authored by Samantha Ming's avatar Samantha Ming

Add feature spec for user view commits

Add test to ensure correct commits per day are displayed in the
commits list
parent 7725c5e7
# frozen_string_literal: true
require 'spec_helper'
describe 'Commit > User view commits' do
let_it_be(:project) { create(:project, :public, :repository) }
let_it_be(:user) { project.creator }
before do
visit project_commits_path(project)
end
describe 'Commits List' do
it 'displays the correct number of commits per day in the header' do
expect(first('.js-commit-header').find('.commits-count').text).to eq('1 commit')
end
it 'lists the correct number of commits' do
expect(page).to have_selector('#commits-list > li:nth-child(2) > ul', count: 1)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment