mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-08-12 12:00:40 +08:00
automated test template file to help get a test started
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user