$(function () { 'use strict'; module('scrollspy plugin') test('should be defined on jquery object', function () { ok($(document.body).scrollspy, 'scrollspy method is defined') }) module('scrollspy', { setup: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapScrollspy = $.fn.scrollspy.noConflict() }, teardown: function () { $.fn.scrollspy = $.fn.bootstrapScrollspy delete $.fn.bootstrapScrollspy } }) test('should provide no conflict', function () { ok(!$.fn.scrollspy, 'scrollspy was set back to undefined (org value)') }) test('should return element', function () { ok($(document.body).bootstrapScrollspy()[0] == document.body, 'document.body returned') }) test('should switch active class on scroll', function () { var sectionHTML = '
' $(sectionHTML).append('#qunit-fixture') var topbarHTML = '
' + '
' + '
' + '

Bootstrap

' + '
  • Overview
  • ' + '' + '
    ' + '
    ' + '
    ' var $topbar = $(topbarHTML).bootstrapScrollspy() $(sectionHTML).append('#qunit-fixture') ok($topbar.find('.active', true)) }) asyncTest('should only switch active class on current target', function () { expect(1); var sectionHTML = '
    ' + '
    ' + '
    ' + '
    ' + '' + '
    ' + '
    ' + '
    ' + '
    ' + '
    ' + '

    Overview

    ' + '

    ' + 'Ad leggings keytar, brunch id art party dolor labore.' + '

    ' + '
    ' + '
    ' + '

    Detail

    ' + '

    ' + 'Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard.' + '

    ' + '
    ' + '
    ' + '
    ' var $section = $(sectionHTML).appendTo('#qunit-fixture') var $scrollSpy = $section .show() .find('#scrollspy-example') .bootstrapScrollspy({ target: '#ss-target' }) $scrollSpy.on('scroll.bs.scrollspy', function () { ok($section.hasClass('active'), 'Active class still on root node') start() }) $scrollSpy.scrollTop(350); }) asyncTest('middle navigation option correctly selected when large offset is used', function () { expect(3); var sectionHTML = '' + '' + '
    ' + '
    ' + '
    ' + '
    ' + '
    ' var $section = $(sectionHTML).appendTo('#qunit-fixture') var $scrollSpy = $section .show() .filter('#content') $scrollSpy.bootstrapScrollspy({ target: '#navigation', offset: $scrollSpy.position().top }) $scrollSpy.on('scroll.bs.scrollspy', function () { ok(!$section.find('#one-link').parent().hasClass('active'), 'Active class removed from first section') ok($section.find('#two-link').parent().hasClass('active'), 'Active class on middle section') ok(!$section.find('#three-link').parent().hasClass('active'), 'Active class not on last section') start() }) $scrollSpy.scrollTop(550); }) })