Skip to content

Commit 84b20b5

Browse files
committed
linting
1 parent db11247 commit 84b20b5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

spec/dummy/spec/system/integration_spec.rb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def finished_all_ajax_requests?
8686
include_examples "React Component", "div#my-hello-world-id"
8787
end
8888

89-
shared_context 'with pro features and immediate hydration' do
89+
shared_context "with pro features and immediate hydration" do
9090
before do
9191
allow(ReactOnRails::Utils).to receive(:react_on_rails_pro_licence_valid?).and_return(true)
9292
end
@@ -100,7 +100,8 @@ def finished_all_ajax_requests?
100100

101101
describe "Turbolinks across pages", :js do
102102
subject { page }
103-
include_context 'with pro features and immediate hydration'
103+
104+
include_context "with pro features and immediate hydration"
104105

105106
it "changes name in message according to input" do
106107
visit "/client_side_hello_world"
@@ -112,7 +113,8 @@ def finished_all_ajax_requests?
112113

113114
describe "TurboStream send react component", :js do
114115
subject { page }
115-
include_context 'with pro features and immediate hydration'
116+
117+
include_context "with pro features and immediate hydration"
116118

117119
it "force load hello-world component immediately" do
118120
visit "/turbo_frame_tag_hello_world"

0 commit comments

Comments
 (0)