mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
describe('c3', function () {
|
|
'use strict';
|
|
|
|
var c3 = window.c3;
|
|
|
|
it('exists', function () {
|
|
expect(c3).not.toBeNull();
|
|
expect(typeof c3).toBe('object');
|
|
});
|
|
});
|