Files
jspm-registry/test/tests/angular.js
T
2014-02-11 17:02:14 +02:00

14 lines
269 B
JavaScript

exports['load test'] = function(done) {
System.import('angular').then(function() {
done();
});
}
exports['another test'] = function(done) {
System.import('angular').then(function(angular) {
if (!angular)
throw 'Test failed...';
done();
});
}