automated test template file to help get a test started

This commit is contained in:
Adam Shaw
2014-06-13 13:00:48 -07:00
parent ee7d5278a9
commit 44aabdb390
+27
View File
@@ -0,0 +1,27 @@
ddescribe('', function() {
var options;
beforeEach(function() {
//affix('#cal');
$('body').append('<div id="cal"></div>');
options = {
defaultDate: ''
};
});
afterEach(function() {
//$('#cal').fullCalendar('destroy');
});
describe('', function() {
beforeEach(function() {
options.defaultView = '';
});
iit('', function() {
$('#cal').fullCalendar(options);
});
});
});