51c60de76c
* Fix importing CSS packages in frontmatter * Formatting * Only update if the source code contains the import * Consolidate the two plugins * we do need a pre and a post * Adds a changeset
20 lines
581 B
JavaScript
20 lines
581 B
JavaScript
import { expect } from 'chai';
|
|
import * as cheerio from 'cheerio';
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
describe('@fontsource/* packages', () => {
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({ root: './fixtures/fontsource-package/' });
|
|
await fixture.build();
|
|
});
|
|
|
|
it('can be imported in frontmatter', async () => {
|
|
const html = await fixture.readFile('/index.html');
|
|
const $ = cheerio.load(html);
|
|
const assetPath = $('link').attr('href');
|
|
const css = await fixture.readFile(assetPath);
|
|
expect(css).to.contain('Montserrat');
|
|
});
|
|
});
|