diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 38eea02..f2b76fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,18 +53,6 @@ jobs: with: chrome-version: ${{ env.CHROME_VERSION }} - - name: List Chrome - shell: "bash" - run: apt list --installed | grep chrome - - - name: Remove Chrome - shell: "bash" - run: sudo apt remove google-chrome-stable - - - uses: browser-actions/setup-chrome@v1 - with: - chrome-version: 119.0.6045.105 - - name: Setup & create Database run: | bundle exec rails db:create db:schema:load diff --git a/spec/system/awesome_tests_spec.rb b/spec/system/awesome_tests_spec.rb index a14e365..def6e4a 100644 --- a/spec/system/awesome_tests_spec.rb +++ b/spec/system/awesome_tests_spec.rb @@ -34,7 +34,7 @@ expect(page.body).not_to have_content("body {background: red;}") end - it "css is not applyied" do + it "css is not applied" do expect(page.execute_script("return window.getComputedStyle($('body')[0]).backgroundColor")).to eq("rgb(250, 250, 250)") end end