From 30278a4fec373dd4b1935361670a3c5a74d88920 Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 21 Dec 2023 15:29:25 +0000 Subject: [PATCH] trim some artifacts of refactors --- src/runtime/test_case_runner_spec.ts | 1 - src/support_code_library_builder/world.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/test_case_runner_spec.ts b/src/runtime/test_case_runner_spec.ts index 8075f498f..e4b7485d1 100644 --- a/src/runtime/test_case_runner_spec.ts +++ b/src/runtime/test_case_runner_spec.ts @@ -58,7 +58,6 @@ async function testRunner( skip: valueOrDefault(options.skip, false), supportCodeLibrary: options.supportCodeLibrary, worldParameters: {}, - testRunContext: {}, }) const result = await runner.run() return { envelopes, result } diff --git a/src/support_code_library_builder/world.ts b/src/support_code_library_builder/world.ts index 5e9b487ad..1406c7c38 100644 --- a/src/support_code_library_builder/world.ts +++ b/src/support_code_library_builder/world.ts @@ -10,6 +10,7 @@ export interface IWorld { readonly attach: ICreateAttachment readonly log: ICreateLog readonly parameters: ParametersType + [key: string]: any }