20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
|
describe('Responsive Toggle', function() {
|
||
|
var plugin;
|
||
|
var $html;
|
||
|
|
||
|
// afterEach(function() {
|
||
|
// plugin.destroy();
|
||
|
// $html.remove();
|
||
|
// });
|
||
|
|
||
|
describe('constructor()', function() {
|
||
|
// it('', function() {
|
||
|
// $html = $('').appendTo('body');
|
||
|
// plugin = new Foundation.ResponsiveToggle($html, {});
|
||
|
|
||
|
// plugin.$element.should.be.an('object');
|
||
|
// plugin.options.should.be.an('object');
|
||
|
// });
|
||
|
});
|
||
|
|
||
|
});
|