Finished feature specs

This commit is contained in:
Luke "Jared" Bennett 2017-04-11 13:06:45 +01:00
parent 18751fb135
commit cf67894504
No known key found for this signature in database
GPG Key ID: 402ED51FB5D306C2
3 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
- content_for :page_specific_javascripts do
= page_specific_javascript_bundle_tag('balsamiq_viewer')
.file-content#js-balsamiq-viewer{ data: { endpoint: namespace_project_raw_path(@project.namespace, @project, @id) } }
.file-content.balsamiq-viewer#js-balsamiq-viewer{ data: { endpoint: namespace_project_raw_path(@project.namespace, @project, @id) } }

View File

@ -7,18 +7,21 @@ feature 'Balsamiq preview', :feature, :js do
let(:project) { create(:project) }
let(:branch) { 'add-balsamiq-file' }
let(:path) { 'files/images/balsamiq.bmpr' }
let(:file_content) { find('.file-content') }
before do
project.add_master(user)
login_as user
p namespace_project_blob_path(project.namespace, project, tree_join(branch, path))
visit namespace_project_blob_path(project.namespace, project, tree_join(branch, path))
end
it 'should' do
screenshot_and_open_image
it 'should show a loading icon' do
expect(file_content).to have_selector('.loading')
end
it 'should show a viewer container' do
expect(page).to have_selector('.balsamiq-viewer')
end
end

View File

@ -27,6 +27,7 @@ module TestEnv
'expand-collapse-files' => '025db92',
'expand-collapse-lines' => '238e82d',
'video' => '8879059',
'add-balsamiq-file' => 'b89b56d',
'crlf-diff' => '5938907',
'conflict-start' => '824be60',
'conflict-resolvable' => '1450cd6',