summaryrefslogtreecommitdiff
path: root/packages/db/test/static-remote.test.js
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <ematipico@users.noreply.github.com> 2024-05-22 08:17:53 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-05-22 08:17:53 +0000
commite1884ea6a87bee5242110bb171a1ba659c33da31 (patch)
tree8c5e536d781f7fab9f384bd0a30ab26df08bc9f5 /packages/db/test/static-remote.test.js
parent05ef10cdc38878746c91e9032ccb57002ad66963 (diff)
downloadastro-e1884ea6a87bee5242110bb171a1ba659c33da31.tar.gz
astro-e1884ea6a87bee5242110bb171a1ba659c33da31.tar.zst
astro-e1884ea6a87bee5242110bb171a1ba659c33da31.zip
[ci] format
Diffstat (limited to 'packages/db/test/static-remote.test.js')
-rw-r--r--packages/db/test/static-remote.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/db/test/static-remote.test.js b/packages/db/test/static-remote.test.js
index 42b18b1a4..1f38683c7 100644
--- a/packages/db/test/static-remote.test.js
+++ b/packages/db/test/static-remote.test.js
@@ -1,5 +1,5 @@
-import { describe, it, before, after } from "node:test";
-import assert from "node:assert/strict";
+import assert from 'node:assert/strict';
+import { after, before, describe, it } from 'node:test';
import { load as cheerioLoad } from 'cheerio';
import { loadFixture } from '../../astro/test/test-utils.js';
import { setupRemoteDbServer } from './test-utils.js';
@@ -29,7 +29,7 @@ describe('astro:db', () => {
const html = await fixture.readFile('/index.html');
const $ = cheerioLoad(html);
- assert.equal($('li').length, 1)
+ assert.equal($('li').length, 1);
});
it('Returns correct shape from db.run()', async () => {