We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9accdc4 commit c461948Copy full SHA for c461948
dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/error-processor.test.js
@@ -21,6 +21,7 @@ define([
21
model;
22
23
beforeEach(function (done) {
24
+ jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
25
injector.mock(mocks);
26
injector.require([
27
'Magento_Checkout/js/model/error-processor'
@@ -64,7 +65,7 @@ define([
64
65
let messageObject = {
66
message: 'You are not authorized to access this resource.'
67
};
-
68
+ console.log(jasmine.DEFAULT_TIMEOUT_INTERVAL);
69
spyOn(model, 'redirectTo').and.callFake(function () {});
70
model.process({
71
status: 401,
0 commit comments