You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/src/test/techdebt.test.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,16 @@ describe('tech debt', function () {
17
17
assert.ok(now<=cutoffDate,msg)
18
18
}
19
19
20
+
it('vscode minimum version',asyncfunction(){
21
+
constminVscode=env.getMinVscodeVersion()
22
+
assert.ok(semver.lt(minVscode,'1.84.0'))
23
+
24
+
assert.ok(
25
+
semver.lt(minVscode,'1.110.0'),
26
+
'Check to see if https://github.com/microsoft/vscode/issues/173861 is resolved. Allows us to remove work done by https://github.com/aws/aws-toolkit-vscode-staging/pull/1214 and part of https://github.com/aws/aws-toolkit-vscode/pull/6664'
0 commit comments