@@ -161,7 +161,7 @@ export abstract class SemanticLintWalker implements tsi.LintWalker {
161
161
const extensions : Map < Map < string > > = {
162
162
"test-syntactic-lint" : {
163
163
"package.json" : `{
164
- "name": "@ts/ test-syntactic-lint",
164
+ "name": "test-syntactic-lint",
165
165
"version": "1.0.0",
166
166
"description": "",
167
167
"main": "index.js",
@@ -185,7 +185,7 @@ export default class IsNamedFoo extends SyntacticLintWalker {
185
185
} ,
186
186
"test-semantic-lint" : {
187
187
"package.json" : `{
188
- "name": "@ts/ test-semantic-lint",
188
+ "name": "test-semantic-lint",
189
189
"version": "1.0.0",
190
190
"description": "",
191
191
"main": "main.js",
@@ -210,7 +210,7 @@ export default class IsValueFoo extends SemanticLintWalker {
210
210
} ,
211
211
"test-extension-arguments" : {
212
212
"package.json" : `{
213
- "name": "@ts/ test-extension-arguments",
213
+ "name": "test-extension-arguments",
214
214
"version": "1.0.0",
215
215
"description": "",
216
216
"main": "index.js",
@@ -236,7 +236,7 @@ export default class IsNamedX extends SyntacticLintWalker {
236
236
} ,
237
237
"test-multi-extension" : {
238
238
"package.json" : `{
239
- "name": "@ts/ test-multi-extension",
239
+ "name": "test-multi-extension",
240
240
"version": "1.0.0",
241
241
"description": "",
242
242
"main": "index.js",
@@ -308,7 +308,7 @@ export class IsValueBar extends SemanticLintWalker {
308
308
* Setup a new test, where all extensions specified in the options hash are available in a node_modules folder, alongside the extension API
309
309
*/
310
310
function test ( sources : Map < string > , options : ExtensionTestOptions ) {
311
- forEach ( options . availableExtensions , ext => loadSetIntoFsAt ( extensions [ ext ] , `/node_modules/@ts/ ${ ext } ` ) ) ;
311
+ forEach ( options . availableExtensions , ext => loadSetIntoFsAt ( extensions [ ext ] , `/node_modules/${ ext } ` ) ) ;
312
312
const diagnostics = buildMap ( sources , sources , options . compilerOptions ) ;
313
313
checkDiagnostics ( diagnostics , options . expectedDiagnostics ) ;
314
314
}
0 commit comments