aboutsummaryrefslogtreecommitdiffstats
path: root/test/webcals/ical_test.js
blob: 7e424f3cd1c442391d0feb91ac6f5cf20873b5da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
testSupport.lib('ical'),

suite('webcals/ics', function() {

  var ical;

  suiteSetup(function() {
    console.log(Webcals);
    ical = Webcals.require('ical');
  });

  test('intiailizer', function() {
    assert.ok(ical);
  });

});