From 787df42500ab1d88ad93234ebd9ddc3fbcf60ee0 Mon Sep 17 00:00:00 2001 From: Emircan ERKUL Date: Fri, 16 Sep 2022 17:24:19 +0300 Subject: [PATCH] feat: replace style with global --- src/util/project/installGeneralAssetsFromCache.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/project/installGeneralAssetsFromCache.test.ts b/src/util/project/installGeneralAssetsFromCache.test.ts index 10eb4a6..a022e43 100644 --- a/src/util/project/installGeneralAssetsFromCache.test.ts +++ b/src/util/project/installGeneralAssetsFromCache.test.ts @@ -29,8 +29,8 @@ describe('installGeneralAssetsFromCache', () => { files: [ { name: 'style', - path: './components/style.scss', - destinationPath: './components/style.scss', + path: './components/global.scss', + destinationPath: './components/global.scss', }, ], } as EmulsifyVariant; @@ -58,8 +58,8 @@ describe('installGeneralAssetsFromCache', () => { expect(copyItemMock).toHaveBeenNthCalledWith( 2, 'systems', - ['compound', './components/style.scss'], - '/home/uname/Projects/cornflake/web/themes/custom/cornflake/components/style.scss', + ['compound', './components/global.scss'], + '/home/uname/Projects/cornflake/web/themes/custom/cornflake/components/global.scss', true ); });