From 3779d3e7cbf7759a22ed436ae1a68b4756cf7470 Mon Sep 17 00:00:00 2001 From: Pierre Romera Date: Thu, 3 Oct 2024 08:49:54 +0000 Subject: [PATCH] fix: ensure all plugins are installed (including BS next) --- tests/unit/specs/components/BatchSearchActions.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/specs/components/BatchSearchActions.spec.js b/tests/unit/specs/components/BatchSearchActions.spec.js index baffc6fe01..cca17faad5 100644 --- a/tests/unit/specs/components/BatchSearchActions.spec.js +++ b/tests/unit/specs/components/BatchSearchActions.spec.js @@ -37,7 +37,7 @@ describe('BatchSearchActions.vue', () => { api = { deleteBatchSearch: vi.fn() } const core = CoreSetup.init(api, getMode(MODE_NAME.SERVER)).useAll().useRouter() router = core.router - plugins = [core.plugin, core.i18n, core.store, core.wait, core.router] + plugins = core.plugins store = core.store })