Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/dev/tests/js/jasmine/tests/lib/mage/backend/
Upload File :
Current File : //home/rtorresani/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 () {
                $pageMainActions.appendTo('body');
                $('body').notification();

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

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