From f66694a076be41d83693423dec818493bcf66715 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Mon, 10 Jun 2024 21:32:12 +0100 Subject: [k6] Refactoring k6 tests (#1) This commit moves all common request logic into a common folder. It is needed to avoid duplication before adding JVM warmup phase. - move registration-related code into common folder - move passthrough operations into common folder Issue-ID: CPS-2208 Signed-off-by: danielhanrahan Change-Id: Ia9ebf61d21044b43063bde153f9c526e67d607c8 --- k6-tests/ncmp/8-id-search-module.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'k6-tests/ncmp/8-id-search-module.js') diff --git a/k6-tests/ncmp/8-id-search-module.js b/k6-tests/ncmp/8-id-search-module.js index d058a1bf14..8200ea28ca 100644 --- a/k6-tests/ncmp/8-id-search-module.js +++ b/k6-tests/ncmp/8-id-search-module.js @@ -18,8 +18,8 @@ * ============LICENSE_END========================================================= */ -import { executeCmHandleIdSearch } from './search-base.js'; -import { makeCustomSummaryReport } from "./utils.js"; +import { executeCmHandleIdSearch } from './common/search-base.js'; +import { makeCustomSummaryReport } from './common/utils.js'; export const options = { vus: 5, -- cgit 1.2.3-korg