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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
659 B
JavaScript
Raw Normal View History

2024-01-08 15:31:05 -05:00
import { expect } from 'chai';
import { load as cheerioLoad } from 'cheerio';
import { isWindows, 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).to.have.a.lengthOf(5);
expect($('li').text()).to.equal('Ben');
});
});
});