Skip to content

Commit 4013621

Browse files
committed
remove ls test
1 parent db311a5 commit 4013621

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava'
22

3-
import { runfmtWithSettings, runLanguageServer } from '../index.js'
3+
import { runfmtWithSettings } from '../index.js'
44

55
test('format with settings', (t) => {
66
const src = 'select A from B'
@@ -12,7 +12,3 @@ test('format with settings', (t) => {
1212
const dst = runfmtWithSettings(src, JSON.stringify(settings), null)
1313
t.is(dst, 'SELECT\n\ta\nFROM\n\tb\n')
1414
})
15-
16-
test('language server entrypoint is exposed', (t) => {
17-
t.is(typeof runLanguageServer, 'function')
18-
})

0 commit comments

Comments
 (0)