1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/test/system/accounts_test.rb
Josh Pigford 19413b0f8d Disabling this block for now
UI is changing to quickly to do systems testing
2024-02-06 12:02:43 -06:00

18 lines
406 B
Ruby

require "application_system_test_case"
class AccountsTest < ApplicationSystemTestCase
setup do
sign_in @user = users(:bob)
end
# test "should create account" do
# click_on "New account"
# click_on "Credit Card"
# within "form" do
# fill_in "Name", with: "VISA"
# fill_in "Balance", with: "1000"
# click_on "Submit"
# end
# assert_text "$1,000"
# end
end