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 assert_text I18n.t("activerecord.attributes.user.company")
19 fill_in "Company", :with => company
20 click_on I18n.t("profiles.show.save")
22 assert_text I18n.t("profiles.update.success")
23 within_content_heading do