Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/dev/tests/js/jasmine/tests/lib/mage/backend/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/* eslint-disable max-nested-callbacks */
define([
    'jquery',
    'mage/backend/bootstrap'
], function ($) {
    'use strict';

    describe('mage/backend/bootstrap', function () {
        var $pageMainActions;

        beforeEach(function () {
            $pageMainActions = $('<div class="page-main-actions"></div>');
        });

        afterEach(function () {
            $pageMainActions.remove();
        });

        describe('"sendPostponeRequest" method', function () {
            it('should insert "Error" notification if request failed', function () {
                var data = {
                        jqXHR: {
                            responseText: 'error',
                            status: '503',
                            readyState: 4
                        },
                        textStatus: 'error'
                    };

                $pageMainActions.appendTo('body');
                $('body').notification();

                // eslint-disable-next-line jquery-no-event-shorthand
                $.ajaxSettings.error(data.jqXHR, data.textStatus);

                expect($('.message-error').length).toBe(1);
                expect(
                    $('body:contains("A technical problem with the server created an error")').length
                ).toBe(1);
            });
        });
    });
});