0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/db/test/basics.test.js
2024-01-24 16:29:45 -06:00

27 lines
668 B
JavaScript

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');
});
});
});