Small css fixes and test fix

This commit is contained in:
aignatov-bio 2020-05-15 11:04:17 +02:00
parent dbd03a09ef
commit dc2caca4f3
4 changed files with 15 additions and 8 deletions

View file

@ -44,7 +44,8 @@
display: inline-block;
}
.panel-heading {
.step-heading {
align-items: center;
border: 0;
display: flex;
min-height: 46px;

View file

@ -2,7 +2,7 @@
<% import = (defined?(import) ? import : false) %>
<div class ="step <%= step.completed? ? "completed" : "not-completed" %>">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-heading step-heading">
<div class="left-floats">
<a class="step-panel-collapse-link"
href="#step-panel-<%= step.id || step.position %>"

View file

@ -41,15 +41,17 @@ Scenario: Successful add new step to a task
@javascript
Scenario: Successful add new step to a task
Given I'm on the Protocols page of a "qPCR" task
And I click "Protocol" link
And I click first "New step" link
And I'm opening protocol section
Then I fill in "PES" in "#step_name" field
Then I fill in "zivali pa so se odpravile dalje po svetu." in "#step_description_textarea" rich text editor field
And I click "Files" link
Then I attach file "Moon.png" to the drag-n-drop field
Then I attach file "File.txt" to the drag-n-drop field
Then I attach file "Star.png" to the drag-n-drop field
# Then I attach file "Moon.png" to the drag-n-drop field
# Then I attach file "File.txt" to the drag-n-drop field
# Then I attach file "Star.png" to the drag-n-drop field
Then I click "Tables" link
Then I click "Add table" link
Then I fill in "PES" in ".table_name" field
@ -57,9 +59,9 @@ Scenario: Successful add new step to a task
# Then I fill in "Dalmatinec" to "B2" Table field
And I click "Add" button
Then I should see "PES" on "#steps" element
And I should see "Moon.png" attachment on "PES" step
And I should see "File.txt" attachment on "PES" step
And I should see "Star.png" attachment on "PES" step
# And I should see "Moon.png" attachment on "PES" step
# And I should see "File.txt" attachment on "PES" step
# And I should see "Star.png" attachment on "PES" step
@wip
Scenario: Successful reorder Steps

View file

@ -7,3 +7,7 @@ Then(/^I should see "([^"]*)" attachment on "([^"]*)" step$/) do |file, step_nam
wait_for_ajax
expect(find('.step', text: step_name)).to have_content(file)
end
Then(/^I'm opening protocol section$/) do
find(:css, '.task-section-caret[aria-controls="protocol-container"]').click
end