$(function () { 'use strict'; module('collapse plugin') test('should be defined on jquery object', function () { ok($(document.body).collapse, 'collapse method is defined') }) module('collapse', { setup: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapCollapse = $.fn.collapse.noConflict() }, teardown: function () { $.fn.collapse = $.fn.bootstrapCollapse delete $.fn.bootstrapCollapse } }) test('should provide no conflict', function () { strictEqual($.fn.collapse, undefined, 'collapse was set back to undefined (org value)') }) test('should return jquery collection containing the element', function () { var $el = $('
') var $collapse = $el.bootstrapCollapse() ok($collapse instanceof $, 'returns jquery collection') strictEqual($collapse[0], $el[0], 'collection contains element') }) test('should show a collapsed element', function () { var $el = $('
').bootstrapCollapse('show') ok($el.hasClass('in'), 'has class "in"') ok(!/height/i.test($el.attr('style')), 'has height reset') }) test('should hide a collapsed element', function () { var $el = $('
').bootstrapCollapse('hide') ok(!$el.hasClass('in'), 'does not have class "in"') ok(/height/i.test($el.attr('style')), 'has height set') }) test('should not fire shown when show is prevented', function () { stop() $('
') .on('show.bs.collapse', function (e) { e.preventDefault() ok(true, 'show event fired') start() }) .on('shown.bs.collapse', function () { ok(false, 'shown event fired') }) .bootstrapCollapse('show') }) test('should reset style to auto after finishing opening collapse', function () { stop() $('
') .on('show.bs.collapse', function () { equal(this.style.height, '0px', 'height is 0px') }) .on('shown.bs.collapse', function () { strictEqual(this.style.height, '', 'height is auto') start() }) .bootstrapCollapse('show') }) test('should remove "collapsed" class from target when collapse is shown', function () { stop() var $target = $('
').appendTo('#qunit-fixture') $('
') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { ok($target.hasClass('collapsed')) start() }) $target.click() }) test('should not close a collapse when initialized with "show" if already shown', function () { stop() expect(0) var $test = $('
') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { ok(false) }) $test.bootstrapCollapse('show') setTimeout(start, 0) }) test('should open a collapse when initialized with "show" if not already shown', function () { stop() expect(1) var $test = $('
') .appendTo('#qunit-fixture') .on('show.bs.collapse', function () { ok(true) }) $test.bootstrapCollapse('show') setTimeout(start, 0) }) test('should remove "collapsed" class from active accordion target', function () { stop() var accordionHTML = '
' + '
' + '
' + '
' + '
' var $groups = $(accordionHTML).appendTo('#qunit-fixture').find('.accordion-group') var $target1 = $('
').appendTo($groups.eq(0)) $('
').appendTo($groups.eq(0)) var $target2 = $('
').appendTo($groups.eq(0)) $('
').appendTo($groups.eq(0)) var $target2 = $('