@@ -18,7 +18,7 @@ const dirname = path.dirname(fileURLToPath(import.meta.url));
18
18
const pathToTemplatePackage = pathUtils . normalizeFilePath (
19
19
path . resolve ( dirname , '../../../packages/template' )
20
20
) ;
21
- const fileUriToTemplatePckage = pathUtils . filePathToUri ( pathToTemplatePackage ) ;
21
+ const fileUriToTemplatePackage = pathUtils . filePathToUri ( pathToTemplatePackage ) ;
22
22
const ROOT = pathUtils . normalizeFilePath ( path . resolve ( dirname , '../../ephemeral' ) ) ;
23
23
24
24
// You'd think this would exist, but... no? Accordingly, supply a minimal
@@ -93,24 +93,20 @@ export class Project {
93
93
throw e ;
94
94
} ) ;
95
95
96
+ const wrapForSnapshottability = ( serviceMethodName : keyof typeof languageServerHandle ) => {
97
+ return async ( uri : string , ...rest : any [ ] ) => {
98
+ // @ts -expect-error not sure how to type this
99
+ const value = await languageServerHandle [ serviceMethodName ] ( uri , ...rest ) ;
100
+ return this . normalizeForSnapshotting ( uri , value ) ;
101
+ }
102
+ }
103
+
96
104
return {
97
105
...this . languageServerHandle ,
98
106
99
- sendDocumentDiagnosticRequest : async ( uri : string ) => {
100
- const value = ( await languageServerHandle . sendDocumentDiagnosticRequest (
101
- uri
102
- ) ) as FullDocumentDiagnosticReport ;
103
-
104
- return this . normalizeForSnapshotting ( uri , value . items ) as Diagnostic [ ] ;
105
- } ,
106
-
107
- sendDefinitionRequest : async ( uri : string , position : Position ) => {
108
- const value = await languageServerHandle . sendDefinitionRequest ( uri , position ) ;
109
-
110
- return this . normalizeForSnapshotting ( uri , value ) as Awaited <
111
- ReturnType < typeof languageServerHandle . sendDefinitionRequest >
112
- > ;
113
- } ,
107
+ sendDocumentDiagnosticRequest : wrapForSnapshottability ( 'sendDocumentDiagnosticRequest' ) ,
108
+ sendDefinitionRequest : wrapForSnapshottability ( 'sendDefinitionRequest' ) ,
109
+ sendHoverRequest : wrapForSnapshottability ( 'sendHoverRequest' ) ,
114
110
115
111
/**
116
112
* Helper fn that makes it easier to replace the whole contents of a file,
@@ -155,8 +151,9 @@ export class Project {
155
151
volarEmbeddedContentUri . toString ( ) ,
156
152
`volar-embedded-content://URI_ENCODED_PATH_TO/FILE`
157
153
)
154
+ . replaceAll ( this . filePath ( '.' ) , '/path/to/EPHEMERAL_TEST_PROJECT' )
158
155
. replaceAll ( this . fileURI ( '.' ) , 'file:///PATH_TO_EPHEMERAL_TEST_PROJECT' )
159
- . replaceAll ( fileUriToTemplatePckage , 'file:///PATH_TO_MODULE/@glint/template' ) ;
156
+ . replaceAll ( fileUriToTemplatePackage , 'file:///PATH_TO_MODULE/@glint/template' ) ;
160
157
161
158
return JSON . parse ( normalized ) ;
162
159
}
0 commit comments