summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/test/server.test.js
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2024-02-21 14:08:19 +0000
committerGravatar GitHub <noreply@github.com> 2024-02-21 14:08:19 +0000
commit062623438b5dfd66682a967edc7b7c91bd29e888 (patch)
tree49fb9c638ccc6016ccd44a165058446e23975207 /packages/integrations/lit/test/server.test.js
parent8e51bf9ea9661c5228ec43e30b661fc422a5803d (diff)
downloadastro-062623438b5dfd66682a967edc7b7c91bd29e888.tar.gz
astro-062623438b5dfd66682a967edc7b7c91bd29e888.tar.zst
astro-062623438b5dfd66682a967edc7b7c91bd29e888.zip
chore: use biome to sort imports - only test files (#10180)
* chore: use biome to sort imports * do the sorting * Update package.json Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Diffstat (limited to 'packages/integrations/lit/test/server.test.js')
-rw-r--r--packages/integrations/lit/test/server.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/lit/test/server.test.js b/packages/integrations/lit/test/server.test.js
index 4b58715af..b5f3cac9b 100644
--- a/packages/integrations/lit/test/server.test.js
+++ b/packages/integrations/lit/test/server.test.js
@@ -1,10 +1,10 @@
-import { LitElement, html } from 'lit';
-import { describe, it } from 'node:test';
import * as assert from 'node:assert/strict';
+import { describe, it } from 'node:test';
+import * as cheerio from 'cheerio';
+import { LitElement, html } from 'lit';
// Must come after lit import because @lit/reactive-element defines
// globalThis.customElements which the server shim expects to be defined.
import server from '../server.js';
-import * as cheerio from 'cheerio';
const { check, renderToStaticMarkup } = server;