From 92b1f4c01fa90da91deb85db1ddcd159474d21f1 Mon Sep 17 00:00:00 2001 From: ShaneK Date: Wed, 9 Jul 2025 14:10:30 -0700 Subject: [PATCH] fix(lint): running core lint.fix --- .../test/playwright/page/utils/set-content.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/core/src/utils/test/playwright/page/utils/set-content.ts b/core/src/utils/test/playwright/page/utils/set-content.ts index 1231340f59..57b91cd33a 100644 --- a/core/src/utils/test/playwright/page/utils/set-content.ts +++ b/core/src/utils/test/playwright/page/utils/set-content.ts @@ -39,9 +39,12 @@ export const setContent = async (page: Page, html: string, testInfo: TestInfo, o // The Ionic bundle is included locally by default unless the test // config passes in the importIonicFromCDN option. This is useful // when testing with the CDN version of Ionic. - let ionicCSSImports = theme === 'ionic' ? ` + let ionicCSSImports = + theme === 'ionic' + ? ` - ` : ` + ` + : ` `; let ionicJSImports = ` @@ -49,9 +52,12 @@ export const setContent = async (page: Page, html: string, testInfo: TestInfo, o `; if (options?.importIonicFromCDN) { - ionicCSSImports = theme === 'ionic' ? ` + ionicCSSImports = + theme === 'ionic' + ? ` - ` : ` + ` + : ` `; ionicJSImports = `