1 require "application_system_test_case"
3 class UserCompanyTest < ApplicationSystemTestCase
4 test "User can change company" do
7 company = "Test Company"
11 within_content_heading do
12 assert_no_selector ".bi.bi-suitcase-lg-fill"
17 within_content_body do
18 fill_in "Company", :with => company
19 click_on "Update Profile"
22 assert_text "Profile updated"
23 within_content_heading do