Skip to content

Commit e66dc4f

Browse files
committed
test: add back techdebt test as reminder to check
1 parent 7bc8b42 commit e66dc4f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/core/src/test/techdebt.test.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ describe('tech debt', function () {
1717
assert.ok(now <= cutoffDate, msg)
1818
}
1919

20+
it('vscode minimum version', async function () {
21+
const minVscode = 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'
27+
)
28+
})
29+
2030
it('nodejs minimum version', async function () {
2131
const minNodejs = env.getMinNodejsVersion()
2232

0 commit comments

Comments
 (0)