From 4b88068919df6720ac495f7029a3fbb79573e9bd Mon Sep 17 00:00:00 2001 From: Ben Holmes Date: Mon, 13 May 2024 11:24:46 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/actions.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/test/actions.test.js b/packages/astro/test/actions.test.js index 6b4c492691..1ddccacf76 100644 --- a/packages/astro/test/actions.test.js +++ b/packages/astro/test/actions.test.js @@ -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'); - }) + }); }); });