From 3c7ccc97a70fd1bba18245625ad55535f4c673c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Wed, 9 Apr 2025 15:41:21 +0200 Subject: [PATCH] DEV: Add system spec to check core features are working fine (#117) --- spec/system/core_features_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 spec/system/core_features_spec.rb diff --git a/spec/system/core_features_spec.rb b/spec/system/core_features_spec.rb new file mode 100644 index 0000000..58eeb6a --- /dev/null +++ b/spec/system/core_features_spec.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +RSpec.describe "Core features", type: :system do + before { upload_theme_or_component } + + it_behaves_like "having working core features", + skip_examples: %i[search:quick_search topics:create] +end