39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
/**
|
|
* UNCOMMENT: fix "Error: Unable to render PersistentCounter because it is null!"
|
|
import { expect } from 'chai';
|
|
import cheerio from 'cheerio';
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({ projectRoot: './fixtures/astro-client-only/' });
|
|
await fixture.build();
|
|
});
|
|
|
|
describe('Client only components', () => {
|
|
it('Loads pages using client:only hydrator', async () => {
|
|
const html = await fixture.readFile('/index.html');
|
|
const $ = cheerio.load(html);
|
|
|
|
// test 1: <astro-root> is empty
|
|
expect($('astro-root').html()).to.equal('');
|
|
|
|
// test 2: svelte renderer is on the page
|
|
const exp = /import\("(.+?)"\)/g;
|
|
let match, svelteRenderer;
|
|
while ((match = exp.exec(result.contents))) {
|
|
if (match[1].includes('renderers/renderer-svelte/client.js')) {
|
|
svelteRenderer = match[1];
|
|
}
|
|
}
|
|
expect(svelteRenderer).to.be.ok;
|
|
|
|
// test 3: can load svelte renderer
|
|
// result = await fixture.fetch(svelteRenderer);
|
|
// expect(result.status).to.equal(200);
|
|
});
|
|
});
|
|
*/
|
|
|
|
it.skip('is skipped', () => {});
|