@@ -31,7 +31,7 @@ const genSchemaPath =
31
31
// this may be cumbersome with offset position assertions but possible
32
32
// if we can create consistency that doesn't limit variability
33
33
// - convert each it() into a nested describe() block (or a top level describe() in another file), and sprinkle in it() statements to replace comments
34
- // - fix TODO comments where bugs were found that couldn't be resolved quickly (2-4hr timebox )
34
+ // - fix TODO comments where bugs were found that couldn't be resolved quickly (2-4hr time box )
35
35
36
36
describe ( 'MessageProcessor with no config' , ( ) => {
37
37
afterEach ( ( ) => {
@@ -327,7 +327,7 @@ describe('project with simple config and graphql files', () => {
327
327
position : { character : 20 , line : 17 } ,
328
328
} ) ;
329
329
expect ( schemaDefs [ 0 ] . uri ) . toEqual ( URI . parse ( genSchemaPath ) . toString ( ) ) ;
330
- // note: if the graphiql test schema changes,
330
+ // note: if the graphiql test schema changes,
331
331
// this might break, please adjust if you see a failure here
332
332
expect ( serializeRange ( schemaDefs [ 0 ] . range ) ) . toEqual ( {
333
333
start : {
@@ -436,7 +436,10 @@ describe('project with simple config and graphql files', () => {
436
436
// 'b/schema.graphql',
437
437
// schemaFile[1] + '\ntype Example1 { field: }',
438
438
// );
439
- // TODO: this didn't work at all, how to register incomplete changes to model autocomplete, etc?
439
+ // TODO: this didn't work at all for multi project,
440
+ // whereas a schema change works above in a single schema context as per updating the cache
441
+ //
442
+ // how to register incomplete changes to model autocomplete, etc?
440
443
// await project.lsp.handleWatchedFilesChangedNotification({
441
444
// changes: [
442
445
// { uri: project.uri('b/schema.graphql'), type: FileChangeType.Changed },
0 commit comments