From 7e8ae1eb7d5b9ee63bd9a2d2dd11e15edf0c967d Mon Sep 17 00:00:00 2001 From: nvim Date: Mon, 26 Aug 2024 12:46:53 +0200 Subject: [PATCH] Update suties structure --- src/modules/test_runs/testRun.controller.ts | 1 + src/suites/1.0.0-ballot/{ => Patient}/patients.spec.ts | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) rename src/suites/1.0.0-ballot/{ => Patient}/patients.spec.ts (96%) diff --git a/src/modules/test_runs/testRun.controller.ts b/src/modules/test_runs/testRun.controller.ts index 49910b9..265502a 100644 --- a/src/modules/test_runs/testRun.controller.ts +++ b/src/modules/test_runs/testRun.controller.ts @@ -32,6 +32,7 @@ export class TestRunController { globals: JSON.stringify({ SESSION_ID: sessionId, }), + maxWorkers: 1, // silent: true, }; diff --git a/src/suites/1.0.0-ballot/patients.spec.ts b/src/suites/1.0.0-ballot/Patient/patients.spec.ts similarity index 96% rename from src/suites/1.0.0-ballot/patients.spec.ts rename to src/suites/1.0.0-ballot/Patient/patients.spec.ts index a3881ca..42cd21f 100644 --- a/src/suites/1.0.0-ballot/patients.spec.ts +++ b/src/suites/1.0.0-ballot/Patient/patients.spec.ts @@ -1,11 +1,11 @@ import { In, Not } from 'typeorm'; -import { Request } from '../../modules/requests/request.entity'; -import { isResourceValid } from '../../utils/services'; import { Patient } from 'fhir/r4'; import { getRequestsWithUnavailableComboSearchParams, getRequestsWithUnavailableSearchParams, -} from '../../utils/clientTestingHelpers'; +} from '../../../utils/clientTestingHelpers'; +import { isResourceValid } from '../../../utils/services'; +import { Request } from '../../../modules/requests/request.entity'; // function patientRequestsOnlyAvailableInteractionsExists(requests: Request[]): boolean { // const availableInteractions = ['READ', 'SEARCH', 'CREATE', 'UPDATE'];