mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
Skip system test instead of comment it (#348)
* feat: add cursor pointer in the log-in and create account pages, also make full with (it's cutted right now) the fileds in the settings edit page * feat: skip system test with an explanation instead of comment them * fix typo in the skip
This commit is contained in:
committed by
GitHub
parent
0ebbae907a
commit
5de5199459
@@ -5,14 +5,16 @@ class AccountsTest < ApplicationSystemTestCase
|
|||||||
sign_in @user = users(:bob)
|
sign_in @user = users(:bob)
|
||||||
end
|
end
|
||||||
|
|
||||||
# test "should create account" do
|
test "should create account" do
|
||||||
# click_on "New account"
|
skip("Disabling this test for now, UI is changing to quickly to do systems testing")
|
||||||
# click_on "Credit Card"
|
|
||||||
# within "form" do
|
click_on "New account"
|
||||||
# fill_in "Name", with: "VISA"
|
click_on "Credit Card"
|
||||||
# fill_in "Balance", with: "1000"
|
within "form" do
|
||||||
# click_on "Submit"
|
fill_in "Name", with: "VISA"
|
||||||
# end
|
fill_in "Balance", with: "1000"
|
||||||
# assert_text "$1,000"
|
click_on "Submit"
|
||||||
# end
|
end
|
||||||
|
assert_text "$1,000"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user