test: skip test until upstream PR is merged

This commit is contained in:
Nate Moore 2021-12-23 15:41:01 -06:00
parent cd365d2a08
commit 5e75ab1fc6

View file

@ -277,7 +277,8 @@ describe('CSS', function () {
expect((await fixture.fetch(href)).status).to.equal(200);
});
it('resolved imported CSS with ?url', async () => {
// Waiting on https://github.com/vitejs/vite/pull/5940
it.skip('resolved imported CSS with ?url', async () => {
const href = $('link[href$="imported-url.css"]').attr('href');
expect((await fixture.fetch(href)).status).to.equal(200);
});