Skip to content

Commit ef5ae2c

Browse files
committed
chore: fix test
1 parent 96959ad commit ef5ae2c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/language-server/test/lib/documents/configLoader.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,10 @@ describe('ConfigLoader', () => {
8787

8888
assert.deepStrictEqual(
8989
// Can't do the equal-check directly, instead check if it's the expected object props
90-
// of svelte-preprocess
9190
Object.keys(
9291
configLoader.getConfig(normalizePath('/some/path/comp.svelte'))?.preprocess || {}
9392
).sort(),
94-
['markup', 'script', 'style'].sort()
93+
['name', 'script'].sort()
9594
);
9695
});
9796

0 commit comments

Comments
 (0)