@@ -9,8 +9,12 @@ import { getGlobalRequireInput } from "./getGlobalRequireInput";
99import { getGlobalRequireOutput } from "./getGlobalRequireOutput" ;
1010import { getServiceImportDeepInput } from "./getServiceImportDeepInput" ;
1111import { getServiceImportDeepOutput } from "./getServiceImportDeepOutput" ;
12+ import { getServiceImportInput } from "./getServiceImportInput" ;
13+ import { getServiceImportOutput } from "./getServiceImportOutput" ;
1214import { getServiceRequireDeepInput } from "./getServiceRequireDeepInput" ;
1315import { getServiceRequireDeepOutput } from "./getServiceRequireDeepOutput" ;
16+ import { getServiceRequireInput } from "./getServiceRequireInput" ;
17+ import { getServiceRequireOutput } from "./getServiceRequireOutput" ;
1418
1519// The "use strict" directive is added to so that comments can be attached to it.
1620// Recast removes the comments while removing import/require.
@@ -28,8 +32,12 @@ const newClientTestsPath = join(__dirname, "..", "..", newClientsTestsFolder);
2832 [ "global-import.output.js" , getGlobalImportOutput ] ,
2933 [ "global-require.input.js" , getGlobalRequireInput ] ,
3034 [ "global-require.output.js" , getGlobalRequireOutput ] ,
35+ [ "service-import.input.js" , getServiceImportInput ] ,
36+ [ "service-import.output.js" , getServiceImportOutput ] ,
3137 [ "service-import-deep.input.js" , getServiceImportDeepInput ] ,
3238 [ "service-import-deep.output.js" , getServiceImportDeepOutput ] ,
39+ [ "service-require.input.js" , getServiceRequireInput ] ,
40+ [ "service-require.output.js" , getServiceRequireOutput ] ,
3341 [ "service-require-deep.input.js" , getServiceRequireDeepInput ] ,
3442 [ "service-require-deep.output.js" , getServiceRequireDeepOutput ] ,
3543 ] as [ string , ( comment : string ) => string ] [ ] ) {
0 commit comments