Files
jspm-registry/test/tests/voxel-demo.js
T
2014-05-19 14:49:41 -07:00

10 lines
191 B
JavaScript

exports['voxel demo'] = function(done) {
System.import('npm:voxel-demo').then(function() {
done();
}).
catch(function(e) {
setTimeout(function() {
throw e;
});
});
}