From e4b99976ebbba6b96ba7a9dcd61740406057821d Mon Sep 17 00:00:00 2001 From: Martin Brennan Date: Wed, 2 Apr 2025 03:49:37 +1000 Subject: [PATCH] DEV: Add core feature spec (#100) --- spec/system/core_feature_spec.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 spec/system/core_feature_spec.rb diff --git a/spec/system/core_feature_spec.rb b/spec/system/core_feature_spec.rb new file mode 100644 index 0000000..627a225 --- /dev/null +++ b/spec/system/core_feature_spec.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +RSpec.describe "Core features", type: :system do + before { upload_theme } + it_behaves_like "having working core features", skip_examples: %i[topics search] +end