summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ben Holmes <bholmesdev@users.noreply.github.com> 2024-05-13 11:24:46 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-05-13 11:24:46 +0000
commit4b88068919df6720ac495f7029a3fbb79573e9bd (patch)
tree63d681a27bf2540f2f68ddfb37bc4b2d3ba12bba
parent7418bb054cf74a131877497b4b70cf0980de4c6b (diff)
downloadastro-4b88068919df6720ac495f7029a3fbb79573e9bd.tar.gz
astro-4b88068919df6720ac495f7029a3fbb79573e9bd.tar.zst
astro-4b88068919df6720ac495f7029a3fbb79573e9bd.zip
[ci] format
-rw-r--r--packages/astro/test/actions.test.js4
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');
- })
+ });
});
});