check for input box options, fixes #7013

This commit is contained in:
Johannes Rieken
2016-05-30 10:54:10 +02:00
parent 6e366f56ff
commit 45a797bec1
3 changed files with 11 additions and 3 deletions

View File

@@ -146,4 +146,10 @@ suite('window namespace tests', () => {
subscription.dispose();
}).then(passOncePlease, failOncePlease);
});
test('#7013 - input without options', function () {
let p = window.showInputBox();
assert.ok(typeof p === 'object');
});
});