Enable no unused parameters in vscode-api tests

This commit is contained in:
Matt Bierner
2018-10-01 16:12:05 -07:00
parent f1c7c19a36
commit 55567633b3
6 changed files with 40 additions and 39 deletions

View File

@@ -65,7 +65,7 @@ suite('commands namespace tests', () => {
});
return workspace.openTextDocument(join(workspace.rootPath || '', './far.js')).then(doc => {
return window.showTextDocument(doc).then(editor => {
return window.showTextDocument(doc).then(_editor => {
return commands.executeCommand('t1', 12345, commands);
}).then(() => {
assert.ok(args);