From fce98782fcbba0126447b6d0bedfe5d64f660621 Mon Sep 17 00:00:00 2001 From: Jonathan Neal Date: Thu, 12 Aug 2021 19:32:03 -0400 Subject: [PATCH] style: update tests --- packages/test/index.tsx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/test/index.tsx b/packages/test/index.tsx index d0e33115..19fca5c6 100644 --- a/packages/test/index.tsx +++ b/packages/test/index.tsx @@ -29,9 +29,23 @@ type CSS = Stitches.CSS const Component1 = styled('button', { color: '$', // we should see `$red100` here + '&:hover': { + color: '$', // we should see `$red100` here + '&:hover': { + color: '$', // we should see `$red100` here + }, + }, variants: { mySize: { - myLarge: {}, + myLarge: { + color: '$', // we should see `$red100` here + '&:hover': { + color: '$', // we should see `$red100` here + '&:hover': { + color: '$', // we should see `$red100` here + }, + }, + }, }, }, })