diff --git a/src/search/test/index.spec.js b/src/search/test/index.spec.js
index f700bf0b6..3693a8427 100644
--- a/src/search/test/index.spec.js
+++ b/src/search/test/index.spec.js
@@ -104,3 +104,14 @@ test('right-icon slot', () => {
expect(wrapper).toMatchSnapshot();
});
+
+test('action-text prop', () => {
+ const wrapper = mount(Search, {
+ propsData: {
+ actionText: 'Custom Text',
+ showAction: true
+ }
+ });
+
+ expect(wrapper).toMatchSnapshot();
+});