Horje
how to set by jasmine.DEFAULT_TIMEOUT_INTERVAL Code Example
how to set by jasmine.DEFAULT_TIMEOUT_INTERVAL
Try setting the jasmine.DEFAULT_TIMEOUT_INTERVAL in a beforeAll, since the timeout interval is reset for each it block:

describe("testing timeout", function() {
    beforeAll(function() {
        jasmine.DEFAULT_TIMEOUT_INTERVAL = 999999;
    });

    fit('should have custom timeout', function(){
        console.log(jasmine.DEFAULT_TIMEOUT_INTERVAL); //prints 999999
    });
})




Javascript

Related
.gitignore nodejs Code Example .gitignore nodejs Code Example
javascript get element by name Code Example javascript get element by name Code Example
get collection in ascending order firestore Code Example get collection in ascending order firestore Code Example
javascript isset Code Example javascript isset Code Example
reactjs sass setup Code Example reactjs sass setup Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8