Skip to content

Add missing test #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test
  • Loading branch information
thecrypticace committed Dec 5, 2023
commit 7a46e446d4536b376816950b132bc68204f459b8
6 changes: 5 additions & 1 deletion tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ it('container queries', () => {
{
raw: html`
<div
class="@container @container-normal @container/sidebar @container-normal/sidebar @container-[size]/sidebar"
class="@container @container-normal @container/sidebar @container-normal/sidebar @container-[size] @container-[size]/sidebar"
>
<div class="@md:underline"></div>
<div class="@md/container1:underline"></div>
Expand Down Expand Up @@ -68,6 +68,10 @@ it('container queries', () => {
container-name: sidebar;
}

.\@container-\[size\] {
container-type: size;
}

.\@container-\[size\]\/sidebar {
container-type: size;
container-name: sidebar;
Expand Down