[ci] format
This commit is contained in:
parent
7ddbd94e5f
commit
46d8f649d5
4 changed files with 10 additions and 6 deletions
|
@ -19,7 +19,7 @@ test.describe('CSS Sourcemap HMR', () => {
|
|||
test.skip(isWindows, 'TODO: fix css hmr in windows');
|
||||
|
||||
test('removes Astro-injected CSS once Vite-injected CSS loads', async ({ page, astro }) => {
|
||||
const html = await astro.fetch('/').then(res => res.text());
|
||||
const html = await astro.fetch('/').then((res) => res.text());
|
||||
|
||||
// style[data-astro-dev-id] should exist in initial SSR'd markup
|
||||
expect(html).toMatch('data-astro-dev-id');
|
||||
|
|
|
@ -32,7 +32,7 @@ test.describe('CSS HMR', () => {
|
|||
});
|
||||
|
||||
test('removes Astro-injected CSS once Vite-injected CSS loads', async ({ page, astro }) => {
|
||||
const html = await astro.fetch('/').then(res => res.text());
|
||||
const html = await astro.fetch('/').then((res) => res.text());
|
||||
|
||||
// style[data-astro-dev-id] should exist in initial SSR'd markup
|
||||
expect(html).toMatch('data-astro-dev-id');
|
||||
|
|
|
@ -136,7 +136,7 @@ async function getScriptsAndStyles({ env, filePath }: GetScriptsAndStylesParams)
|
|||
props: {
|
||||
type: 'text/css',
|
||||
// Track the ID so we can match it to Vite's injected style later
|
||||
'data-astro-dev-id': viteID(new URL(`.${url}`, env.settings.config.root))
|
||||
'data-astro-dev-id': viteID(new URL(`.${url}`, env.settings.config.root)),
|
||||
},
|
||||
children: content,
|
||||
});
|
||||
|
|
|
@ -42,5 +42,9 @@ function isStyle(node: Node): node is HTMLStyleElement {
|
|||
}
|
||||
|
||||
function isViteInjectedStyle(node: Node): node is HTMLStyleElement {
|
||||
return isStyle(node) && node.getAttribute('type') === 'text/css' && !!node.getAttribute('data-vite-dev-id');
|
||||
return (
|
||||
isStyle(node) &&
|
||||
node.getAttribute('type') === 'text/css' &&
|
||||
!!node.getAttribute('data-vite-dev-id')
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue