Skip to content

Commit 2b067c1

Browse files
authored
Update tests and vscode test version (#418)
1 parent 35e22ae commit 2b067c1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

client/src/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function main() {
1212
// Passed to --extensionTestsPath
1313
const extensionTestsPath = path.resolve(__dirname, "./suite/index");
1414

15-
const vscodeExecutablePath = await downloadAndUnzipVSCode("1.85.0");
15+
const vscodeExecutablePath = await downloadAndUnzipVSCode("1.94.0");
1616

1717
// Download VS Code, unzip it and run the integration test
1818
await runTests({

client/src/test/suite/validation.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ suite("Should validate a template against cfn-lint", () => {
2727
"[cfn-lint] E3006: Resource type 'AWS::EC2::Instance1' does not exist in 'us-east-1'",
2828
range: toRange(12, 4, 12, 8),
2929
},
30+
{
31+
severity: vscode.DiagnosticSeverity.Error,
32+
message: "[cfn-lint] E3673: 'ImageId' is a required property",
33+
range: toRange(13, 2, 13, 16),
34+
},
3035
]);
3136
});
3237

0 commit comments

Comments
 (0)