diff --git a/lib/components/tab.tsx b/lib/components/tab.tsx index 31797667..6c9ded50 100644 --- a/lib/components/tab.tsx +++ b/lib/components/tab.tsx @@ -112,7 +112,11 @@ const Tab = (props: TabProps) => { } .tab_icon { - transition: opacity 0.2s ease, color 0.2s ease, transform 0.25s ease, background-color 0.1s ease; + transition: + opacity 0.2s ease, + color 0.2s ease, + transform 0.25s ease, + background-color 0.1s ease; pointer-events: none; position: absolute; right: 7px; diff --git a/test/index.ts b/test/index.ts index acbcba60..96ce20d8 100644 --- a/test/index.ts +++ b/test/index.ts @@ -38,10 +38,11 @@ test.before(async () => { test.after(async () => { await app - .evaluate(({BrowserWindow}) => - BrowserWindow.getFocusedWindow() - ?.capturePage() - .then((img) => img.toPNG().toString('base64')) + .evaluate( + ({BrowserWindow}) => + BrowserWindow.getFocusedWindow() + ?.capturePage() + .then((img) => img.toPNG().toString('base64')) ) .then((img) => Buffer.from(img || '', 'base64')) .then(async (imageBuffer) => {