Skip to content

Commit

Permalink
automated test template file to help get a test started
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Jun 13, 2014
1 parent ee7d527 commit 44aabdb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tests/automated/template.js.txt
Original file line number Diff line number Diff line change
@@ -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);
});
});

});

0 comments on commit 44aabdb

Please sign in to comment.