Skip to content

Commit 7cefa67

Browse files
authored
test(stepfunctions): failing integration test after ASL update #6188
## Problem Integration test for SFN was broken after updating amazon-states-language-service package to 1.13.0 ([relevant PR](#6139)) ## Solution Updating integration test to account for the new `QueryLanguage` variable introduced in the new version of the package
1 parent 39f83db commit 7cefa67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/testInteg/stepFunctions/init.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('stepFunctions ASL LSP', async function () {
3535
)) as vscode.CompletionList
3636
assert.deepStrictEqual(
3737
result.items.map((item) => item.label),
38-
['Comment', 'StartAt', 'States', 'TimeoutSeconds', 'Version']
38+
['Comment', 'QueryLanguage', 'StartAt', 'States', 'TimeoutSeconds', 'Version']
3939
)
4040
})
4141
})

0 commit comments

Comments
 (0)