Skip to content

Commit

Permalink
Removed <style> with type="text/css" from inline output at build …
Browse files Browse the repository at this point in the history
…time (#8480)
  • Loading branch information
yamanoku authored Sep 12, 2023
1 parent b8dae77 commit c13236e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integrations/node/test/prerender-404-500.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Prerender 404', () => {
const $ = cheerio.load(html);

// length will be 0 if the stylesheet does not get included
expect($('style[type="text/css"]')).to.have.a.lengthOf(1);
expect($('style')).to.have.a.lengthOf(1);
});
});

Expand Down

0 comments on commit c13236e

Please sign in to comment.