Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: update code action titles #462

Merged
merged 1 commit into from
Nov 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/src/codeActions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ suite('Code actions', () => {
assert.notStrictEqual(
action,
undefined,
`Code action '${expectedTitle}' not found in. Instead found: ${stringify(r)}`,
`Code action "${expectedTitle}" not found in. Instead found: ${stringify(r)}`,
)
}

suite('Undefined names', () => {
test('Should propose using Date.earlierDate def', async () => {
await testCodeAction(dateDocUri, new vscode.Position(43, 4), 'use Date.earlierDate')
await testCodeAction(dateDocUri, new vscode.Position(43, 4), "use 'Date.earlierDate'")
})

test('Should propose using Date.Month enum', async () => {
await testCodeAction(dateDocUri, new vscode.Position(2, 25), 'use Date.Month')
await testCodeAction(dateDocUri, new vscode.Position(2, 25), "use 'Date.Month'")
})

test('Should propose introducing new Month enum', async () => {
await testCodeAction(dateDocUri, new vscode.Position(2, 25), 'Introduce new enum Month')
await testCodeAction(dateDocUri, new vscode.Position(2, 25), "Create enum 'Month'")
})
})

Expand Down
Loading