We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91dc49d commit 0df3d9eCopy full SHA for 0df3d9e
src/lib/render/utils/css/extract-rules-per-class.spec.ts
@@ -5,7 +5,7 @@ import { expect, describe, it } from 'vitest';
5
6
describe('extractRulesPerClass()', async () => {
7
function convertToComparable(map: Map<string, Rule>): Record<string, string> {
8
- return Object.fromEntries(map.entries().map(([k, v]) => [k, generate(v)]));
+ return Object.fromEntries([...map.entries()].map(([k, v]) => [k, generate(v)]));
9
}
10
11
it('works with just inlinable utilities', async () => {
0 commit comments