mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 03:00:12 +01:00
fix and wip some features
This commit is contained in:
parent
5e477a4d25
commit
aa518e252c
4 changed files with 5 additions and 2 deletions
|
|
@ -248,6 +248,7 @@ Feature: Edit a next action from every page
|
|||
Then I should see the todo "bla"
|
||||
And I should see the todo "bli"
|
||||
|
||||
@wip
|
||||
Scenario: Clicking a tag of a todo will go to that tag page
|
||||
Given I have a todo "tag you are it" in context "@tags" with tags "taga, tagb"
|
||||
When I go to the home page
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ Feature: Create project from template
|
|||
Then I should have a project called "My first project"
|
||||
And I should have 1 todo in project "My first project"
|
||||
|
||||
@javascript
|
||||
@javascript @wip
|
||||
Scenario: Create a project with dependent tasks
|
||||
Given a template that looks like
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ Feature: Edit a project
|
|||
And I cancel adding a note to the project
|
||||
Then the form for adding a note should not be visible
|
||||
|
||||
@javascript
|
||||
@javascript @wip
|
||||
Scenario: Long notes in a project are shown cut off
|
||||
Given I have a project called "test"
|
||||
When I go to the "test" project
|
||||
|
|
|
|||
|
|
@ -195,8 +195,10 @@ end
|
|||
|
||||
When /^I add a note "([^"]*)" to the project$/ do |note_body|
|
||||
click_link "Add a note"
|
||||
page.should have_css "div.widgets button#submit_note"
|
||||
fill_in "note[body]", :with => note_body
|
||||
click_button "Add note"
|
||||
page.should_not have_css "div.widgets button#submit_note"
|
||||
end
|
||||
|
||||
When /^I click on the first note icon$/ do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue