Skip to content

Commit

Permalink
chore: remove irrelevant test
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re committed Dec 6, 2023
1 parent 7c044a9 commit 6678e01
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/integrations/vue/test/app-entrypoint.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,6 @@ describe('App Entrypoint no export default (dev)', () => {
expect(bar.textContent).to.eq('works');
});

it('component not included on page', async () => {
const html = await fixture.fetch('/').then(res => res.text());
const { document } = parseHTML(html);
const island = document.querySelector('astro-island');
const client = island.getAttribute('renderer-url');
expect(client).not.to.be.undefined;

const js = await fixture.fetch(client);
expect(js).not.to.match(/\w+\.component\(\"Bar\"/gm);
});

it('loads svg components without transforming them to assets', async () => {
const html = await fixture.fetch('/').then(res => res.text());
const { document } = parseHTML(html);
Expand Down

0 comments on commit 6678e01

Please sign in to comment.