diff options
Diffstat (limited to 'packages/db/test/static-remote.test.js')
-rw-r--r-- | packages/db/test/static-remote.test.js | 6 |
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 () => { |