Fix script options which were inadvertently broken in the query tool tab naming patch.

This commit is contained in:
Surinder Kumar
2017-06-15 12:19:47 +01:00
committed by Dave Page
parent d70c3003d3
commit 2a87585665
4 changed files with 26 additions and 9 deletions

View File

@@ -23,5 +23,10 @@ function (SqlEditorUtils) {
});
});
describe('Capitalize the first letter of given string', function () {
it('returns string with First letter Capital', function () {
expect(SqlEditorUtils.capitalizeFirstLetter('create script')).toEqual('Create script');
});
});
});
});