Skip to content

Commit

Permalink
Update test (there's an extra style for images now)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascorbic committed Nov 6, 2024
1 parent e5d652b commit 95f9d9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/astro/test/units/dev/collections-renderentry.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 1);
assert.equal($('style').length, 2);
},
);
});
Expand Down Expand Up @@ -158,7 +158,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 1);
assert.equal($('style').length, 2);
},
);
});
Expand Down Expand Up @@ -225,7 +225,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 1);
assert.equal($('style').length, 2);
},
);
});
Expand Down Expand Up @@ -291,7 +291,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 1);
assert.equal($('style').length, 2);
},
);
});
Expand Down

0 comments on commit 95f9d9d

Please sign in to comment.