import { expect } from 'chai'; import { load as cheerioLoad } from 'cheerio'; import { loadFixture } from '../../astro/test/test-utils.js'; describe('astro:db', () => { let fixture; before(async () => { fixture = await loadFixture({ root: new URL('./fixtures/basics/', import.meta.url), }); }); describe('build', () => { before(async () => { await fixture.build(); }); it('Prints the list of authors', async () => { const html = await fixture.readFile('/index.html'); const $ = cheerioLoad(html); const ul = $('ul'); expect(ul.children()).to.have.a.lengthOf(5); expect(ul.children().eq(0).text()).to.equal('Ben'); }); }); });