summaryrefslogtreecommitdiff
path: root/packages/astro/test/0-css.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/0-css.test.js')
-rw-r--r--packages/astro/test/0-css.test.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/astro/test/0-css.test.js b/packages/astro/test/0-css.test.js
index 6c55a360d..1ca8acf2e 100644
--- a/packages/astro/test/0-css.test.js
+++ b/packages/astro/test/0-css.test.js
@@ -277,8 +277,13 @@ describe('CSS', function () {
expect((await fixture.fetch(href)).status).to.equal(200);
});
- it('resolved imported CSS with ?url', async () => {
+ // Skipped until upstream fix lands
+ // Our fix: https://github.com/withastro/astro/pull/2106
+ // OG Vite PR: https://github.com/vitejs/vite/pull/5940
+ // Next Vite PR: https://github.com/vitejs/vite/pull/5796
+ it.skip('resolved imported CSS with ?url', async () => {
const href = $('link[href$="imported-url.css"]').attr('href');
+ expect(href).to.be.ok;
expect((await fixture.fetch(href)).status).to.equal(200);
});