Files
jspm-registry/test/tests/voxel-demo.js
T

10 lines
191 B
JavaScript
Raw Normal View History

2014-05-19 14:49:30 -07:00
exports['voxel demo'] = function(done) {
System.import('npm:voxel-demo').then(function() {
done();
}).
catch(function(e) {
setTimeout(function() {
throw e;
});
});
}