File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
language-server/src/services Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,11 @@ describe("Feature - workspace (neovim)", () => {
2222 }
2323 } ) ;
2424
25+ console . log ( "a" ) ; // eslint-disable-line no-console
2526 documentUriA = await client . writeDocument ( "./subjectA.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
27+ console . log ( "b" ) ; // eslint-disable-line no-console
2628 documentUriB = await client . writeDocument ( "./subjectB.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
29+ console . log ( "c" ) ; // eslint-disable-line no-console
2730 } ) ;
2831
2932 afterAll ( async ( ) => {
@@ -46,7 +49,9 @@ describe("Feature - workspace (neovim)", () => {
4649 schemaUris . push ( params . uri ) ;
4750 } ) ;
4851
52+ console . log ( "d" ) ; // eslint-disable-line no-console
4953 await client . writeDocument ( "./subjectB.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
54+ console . log ( "e" ) ; // eslint-disable-line no-console
5055
5156 expect ( schemaUris ) . to . eql ( [ documentUriA , documentUriB ] ) ;
5257 } ) ;
You can’t perform that action at this time.
0 commit comments