Skip to content

Commit a4e794d

Browse files
a-tarasyukDanielRosenwasser
authored andcommitted
fix file extension (microsoft#35825)
1 parent 6c413e0 commit a4e794d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/testRunner/unittests/config/showConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace ts {
3737

3838
showTSConfigCorrectly("Default initialized TSConfig", ["--showConfig"]);
3939

40-
showTSConfigCorrectly("Show TSConfig with files options", ["--showConfig", "file0.st", "file1.ts", "file2.ts"]);
40+
showTSConfigCorrectly("Show TSConfig with files options", ["--showConfig", "file0.ts", "file1.ts", "file2.ts"]);
4141

4242
showTSConfigCorrectly("Show TSConfig with boolean value compiler options", ["--showConfig", "--noUnusedLocals"]);
4343

tests/baselines/reference/showConfig/Show TSConfig with files options/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {},
33
"files": [
4-
"./file0.st",
4+
"./file0.ts",
55
"./file1.ts",
66
"./file2.ts"
77
]

0 commit comments

Comments
 (0)