File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
language-server/src/services Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ describe("Feature - workspace (neovim)", () => {
2323 } ) ;
2424
2525 documentUriA = await client . writeDocument ( "./subjectA.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
26+ console . log ( "b" ) ; // eslint-disable-line no-console
2627 documentUriB = await client . writeDocument ( "./subjectB.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
28+ console . log ( "c" ) ; // eslint-disable-line no-console
2729 } ) ;
2830
2931 afterAll ( async ( ) => {
@@ -46,7 +48,9 @@ describe("Feature - workspace (neovim)", () => {
4648 schemaUris . push ( params . uri ) ;
4749 } ) ;
4850
51+ console . log ( "d" ) ; // eslint-disable-line no-console
4952 await client . writeDocument ( "./subjectB.schema.json" , `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }` ) ;
53+ console . log ( "e" ) ; // eslint-disable-line no-console
5054
5155 expect ( schemaUris ) . to . eql ( [ documentUriA , documentUriB ] ) ;
5256 } ) ;
You can’t perform that action at this time.
0 commit comments