1947ef7a99
* fix: no asset plugin w/ img is imported with query * add changeset * add test for the new feature * remove exp * use removeQueryString instead of `includes('?')` it's more explicit --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
import { loadFixture } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
import { parseHTML } from 'linkedom';
|
|
describe('App Entrypoint', () => {
|
|
/** @type {import('./test-utils').Fixture} */
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/app-entrypoint/',
|
|
});
|
|
await fixture.build();
|
|
});
|
|
|
|
it('loads during SSR', async () => {
|
|
const data = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(data);
|
|
const bar = document.querySelector('#foo > #bar');
|
|
expect(bar).not.to.be.undefined;
|
|
expect(bar.textContent).to.eq('works');
|
|
});
|
|
|
|
it('setup included in renderer bundle', async () => {
|
|
const data = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(data);
|
|
const island = document.querySelector('astro-island');
|
|
const client = island.getAttribute('renderer-url');
|
|
expect(client).not.to.be.undefined;
|
|
|
|
const js = await fixture.readFile(client);
|
|
expect(js).to.match(/\w+\.component\(\"Bar\"/gm);
|
|
});
|
|
|
|
it('loads svg components without transforming them to assets', async () => {
|
|
const data = await fixture.readFile('/index.html');
|
|
const { document } = parseHTML(data);
|
|
const client = document.querySelector('astro-island svg');
|
|
|
|
expect(client).not.to.be.undefined;
|
|
});
|
|
});
|