diff options
-rw-r--r-- | packages/astro/test/actions.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/actions.test.js b/packages/astro/test/actions.test.js index 6b4c49269..1ddccacf7 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'); - }) + }); }); }); |