From 6e0ee2cb733810ff31343a005e9af26ad459554d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Tue, 1 Apr 2025 17:39:22 +0200 Subject: [PATCH] DEV: Add system spec to check core features are working fine --- spec/system/core_features_spec.rb | 7 +++++++ 1 file changed, 7 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 00000000..db86db28 --- /dev/null +++ b/spec/system/core_features_spec.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +RSpec.describe "Core features", type: :system do + before { enable_current_plugin } + + it_behaves_like "having working core features" +end