diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 7ee22b5e..ebd18505 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -1251,18 +1251,6 @@ getJasmineRequireObj().Env = function(j$) { * @default false */ hideDisabled: false, - /** - * Set to provide a custom promise library that Jasmine will use if it needs - * to create a promise. If not set, it will default to whatever global Promise - * library is available (if any). - * @name Configuration#Promise - * @since 3.5.0 - * @type function - * @default undefined - * @deprecated In a future version, Jasmine will ignore the Promise config - * property and always create native promises instead. - */ - Promise: undefined, /** * Clean closures when a suite is done running (done by clearing the stored function reference). * This prevents memory leaks, but you won't be able to run jasmine multiple times.