0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
Matt Kane 2024-09-20 11:20:35 +00:00 committed by astrobot-houston
parent 26ea5e814a
commit dda78222c3

View file

@ -3,8 +3,8 @@ import { promises as fs } from 'node:fs';
import { sep } from 'node:path';
import { sep as posixSep } from 'node:path/posix';
import { after, before, describe, it } from 'node:test';
import * as devalue from 'devalue';
import * as cheerio from 'cheerio';
import * as devalue from 'devalue';
import { loadFixture } from './test-utils.js';
describe('Content Layer', () => {
@ -158,7 +158,7 @@ describe('Content Layer', () => {
});
it('displays public images unchanged', async () => {
assert.equal($('img[alt="buzz"]').attr('src'), "/buzz.jpg");
assert.equal($('img[alt="buzz"]').attr('src'), '/buzz.jpg');
});
it('renders local images', async () => {