https://github.com/cytoscape/cytoscape.js
Raw File
Tip revision: c97316c5175ed8ad4ef46500d191c5391ab56406 authored by maxkfranz on 22 December 2015, 19:14:39 UTC
preparing to publish 2.5.4
Tip revision: c97316c
test-meteor.js
'use strict';

Tinytest.add('Cytoscape.init', function(test){
  test.ok(cytoscape({ headless: true }) != null, 'nonnull');
});

Tinytest.add('Cytoscape.eles', function(test){
  test.ok(cytoscape({ headless: true }).elements().length === 0, 'gets empty eles collection');
});
back to top