2023-03-21 13:20:23 +00:00
|
|
|
import { parseHTML } from 'linkedom';
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
|
|
|
import markdoc from '../dist/index.js';
|
|
|
|
|
2023-05-30 20:18:20 +00:00
|
|
|
const root = new URL('./fixtures/variables/', import.meta.url);
|
2023-03-21 13:20:23 +00:00
|
|
|
|
2023-05-30 20:18:20 +00:00
|
|
|
describe('Markdoc - Variables', () => {
|
2023-03-21 13:20:23 +00:00
|
|
|
let baseFixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
baseFixture = await loadFixture({
|
|
|
|
root,
|
|
|
|
integrations: [markdoc()],
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('dev', () => {
|
|
|
|
let devServer;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
devServer = await baseFixture.startDevServer();
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
await devServer.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('has expected entry properties', async () => {
|
|
|
|
const res = await baseFixture.fetch('/');
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
expect(document.querySelector('h1')?.textContent).to.equal('Processed by schema: Test entry');
|
|
|
|
expect(document.getElementById('id')?.textContent?.trim()).to.equal('id: entry.mdoc');
|
|
|
|
expect(document.getElementById('slug')?.textContent?.trim()).to.equal('slug: entry');
|
|
|
|
expect(document.getElementById('collection')?.textContent?.trim()).to.equal(
|
|
|
|
'collection: blog'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('build', () => {
|
|
|
|
before(async () => {
|
|
|
|
await baseFixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('has expected entry properties', async () => {
|
|
|
|
const html = await baseFixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
expect(document.querySelector('h1')?.textContent).to.equal('Processed by schema: Test entry');
|
|
|
|
expect(document.getElementById('id')?.textContent?.trim()).to.equal('id: entry.mdoc');
|
|
|
|
expect(document.getElementById('slug')?.textContent?.trim()).to.equal('slug: entry');
|
|
|
|
expect(document.getElementById('collection')?.textContent?.trim()).to.equal(
|
|
|
|
'collection: blog'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|