From 38b9bd9c6385b25ed0d2011a2c0c3f5c0f6e5404 Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Thu, 26 Aug 2021 13:26:55 +0200 Subject: [PATCH] Fix test describes Signed-off-by: Camila Belo --- packages/techdocs-common/src/stages/publish/helpers.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/techdocs-common/src/stages/publish/helpers.test.ts b/packages/techdocs-common/src/stages/publish/helpers.test.ts index c30f649c8d..a3571ef0ab 100644 --- a/packages/techdocs-common/src/stages/publish/helpers.test.ts +++ b/packages/techdocs-common/src/stages/publish/helpers.test.ts @@ -89,7 +89,9 @@ describe('lowerCaseEntityTriplet', () => { const actualPath = lowerCaseEntityTriplet(originalPath); expect(actualPath).toBe('default/component/backstage/index.html'); }); +}); +describe('lowerCaseEntityTripletInStoragePath', () => { it('does not lowercase beyond the triplet', () => { const originalPath = 'default/Component/backstage/assets/IMAGE.png'; const actualPath = lowerCaseEntityTripletInStoragePath(originalPath);