Using RSpec to write some feature tests, I encountered an error in my application where a pre-purchased template with numerous styles is causing issues. Upon running the specs, the following error occurred:
ActionView::Template::Error:
Invalid CSS after " display": expected ";", was ":block !important;"
(in /home/mateusz/invoiceplus/app/assets/stylesheets/application.css)
# (sass):9074
# ./app/views/layouts/devise.html.haml:7:in `_app_views_layouts_devise_html_haml__3446440732480765705_58447420'
# ./spec/features/creating_companies_spec.rb:4:in `block (2 levels) in <top (required)>'
The challenge lies in solving this issue within a file containing approximately five thousand lines of css styles.