In this test: ``` ruby RSpec.shared_examples :shared_test, js: true do it { expect(true).to eq(false) } end RSpec.feature 'Test feature' do context 'Test context', js: true do it { expect(true).to eq(true) } end end ``` :shared_test examples are executed in `Test context`, although we're not including it.