Skip to content

Commit 43b7458

Browse files
authored
Fix broken main test (#894)
1 parent ef8ea8b commit 43b7458

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/vscode/__tests__/ts-plugin-tests/smoketest-template-imports-ts-plugin.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('Smoke test: ETI Environment (TS Plugin Mode)', () => {
2626
});
2727

2828
describe('diagnostics for errors', () => {
29-
test('with a custom extension', async () => {
29+
test('basic diagnostics for gts file', async () => {
3030
let scriptURI = Uri.file(`${rootDir}/src/index.gts`);
3131
let scriptEditor = await window.showTextDocument(scriptURI, { viewColumn: ViewColumn.One });
3232

@@ -46,8 +46,7 @@ describe('Smoke test: ETI Environment (TS Plugin Mode)', () => {
4646
message: "Type 'number' is not assignable to type 'string'.",
4747
source: 'ts-plugin',
4848
code: 2322,
49-
// range: new Range(6, 13, 6, 19),
50-
range: new Range(10, 13, 10, 19),
49+
range: new Range(6, 13, 6, 19),
5150
},
5251
]);
5352
});

0 commit comments

Comments
 (0)