astro/packages/astro/test/fontsource.test.js
Matthew Phillips 51c60de76c
Fix importing CSS packages in frontmatter (#3537)
* 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
2022-06-06 18:26:15 -04:00

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