From 8b3bf53237197a730a4367034827f92b004bcedf Mon Sep 17 00:00:00 2001 From: Maruf Rasully Date: Thu, 12 Dec 2024 13:45:55 +0100 Subject: [PATCH] fix: format --- packages/context/test/unit/api.test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/context/test/unit/api.test.ts b/packages/context/test/unit/api.test.ts index 970e602b..9009351c 100644 --- a/packages/context/test/unit/api.test.ts +++ b/packages/context/test/unit/api.test.ts @@ -135,7 +135,10 @@ describe("context", () => { .spyOn(controlIds, "getControlIds") .mockReturnValue(new Map()); // act - const result = await getContext("path/to/xml/file", 'test-model-cache-path'); + const result = await getContext( + "path/to/xml/file", + "test-model-cache-path" + ); // assert expect(getManifestDetailsStub).toHaveBeenCalled(); expect(getManifestStub).toHaveBeenCalled(); @@ -143,7 +146,7 @@ describe("context", () => { expect(getCustomViewIdStub).toHaveBeenCalled(); expect(getYamlDetailsStub).toHaveBeenCalled(); expect(getSemanticModelStub).toHaveBeenCalledWith( - 'test-model-cache-path', + "test-model-cache-path", "OpenUI5", UI5_VERSION_S4_PLACEHOLDER );