0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
Ben Holmes 2024-05-13 11:24:46 +00:00 committed by astrobot-houston
parent 7418bb054c
commit 4b88068919

View file

@ -1,8 +1,8 @@
import assert from 'node:assert/strict';
import { after, before, describe, it } from 'node:test';
import * as cheerio from 'cheerio';
import testAdapter from './test-adapter.js';
import { loadFixture } from './test-utils.js';
import * as cheerio from 'cheerio';
describe('Astro Actions', () => {
let fixture;
@ -184,6 +184,6 @@ describe('Astro Actions', () => {
const html = await res.text();
let $ = cheerio.load(html);
assert.equal($('#user').text(), 'Houston');
})
});
});
});