From 08abef59996e62d8e11101426c9689a4efe8a42f Mon Sep 17 00:00:00 2001 From: seongminn Date: Wed, 25 Jun 2025 22:57:53 +0900 Subject: [PATCH] chore: remove unnecessary test-case --- .../__tests__/style-custom.test.ts | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/src/css-rules/no-empty-blocks/__tests__/style-custom.test.ts b/src/css-rules/no-empty-blocks/__tests__/style-custom.test.ts index 284269a..2b1aaa4 100644 --- a/src/css-rules/no-empty-blocks/__tests__/style-custom.test.ts +++ b/src/css-rules/no-empty-blocks/__tests__/style-custom.test.ts @@ -301,33 +301,5 @@ run({ `, errors: [{ messageId: 'emptyStyleDeclaration' }], }, - - // Variable declaration with empty style - // { - // code: ` - // import { style } from '@vanilla-extract/css'; - - // export const layerStyle = ( - // layer: 'reset' | 'theme' | 'component' | 'utilities', - // rule: StyleRule, - // debugId?: string, - // ) => - // style( - // { - // '@layer': { - // [layerMap[layer]]: rule, - // }, - // }, - // debugId, - // ); - - // const { className } = layerStyle('component', {}); - // `, - // errors: [{ messageId: 'emptyStyleDeclaration' }], - // output: ` - // import { style } from '@vanilla-extract/css'; - - // `, - // }, ], });