We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db311a5 commit 4013621Copy full SHA for 4013621
crates/uroborosql-fmt-napi/__test__/index.spec.mjs
@@ -1,6 +1,6 @@
1
import test from 'ava'
2
3
-import { runfmtWithSettings, runLanguageServer } from '../index.js'
+import { runfmtWithSettings } from '../index.js'
4
5
test('format with settings', (t) => {
6
const src = 'select A from B'
@@ -12,7 +12,3 @@ test('format with settings', (t) => {
12
const dst = runfmtWithSettings(src, JSON.stringify(settings), null)
13
t.is(dst, 'SELECT\n\ta\nFROM\n\tb\n')
14
})
15
-
16
-test('language server entrypoint is exposed', (t) => {
17
- t.is(typeof runLanguageServer, 'function')
18
-})
0 commit comments