-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix(Footer): Less HTML #518
base: dev
Are you sure you want to change the base?
Conversation
Classic example of a brittle test case here: |
So we should just remove this test and add another one which checks that the links are available? |
Well, the test |
Oh, now I see what you mean 👍 |
@chrisma Should be fixed now. |
end | ||
|
||
it 'shows rejection information' do | ||
expect(page).to have_text('Info') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should (re)add a test that the rejection information is actually displayed to the user
This fixes the tab order Co-authored-by: Björn Daase <[email protected]>
… into refactor_footer
@chrisma I added a test for that, which is currently failing. The problem is, that clicking the "Reject" button currently also results in an acceptance of the request (on hart-dev). |
Due to @BraunTom related to the form in form on the requests page (which is not valid https://stackoverflow.com/questions/555928/is-it-valid-to-have-a-html-form-inside-another-html-form). |
One large form with two submit buttons, one with the value "accept", one with the value "reject". |
No description provided.