Files
jspm-registry/test/tests/angular.js
T

14 lines
269 B
JavaScript
Raw Normal View History

2014-02-11 17:02:14 +02:00
exports['load test'] = function(done) {
System.import('angular').then(function() {
done();
2014-02-11 16:10:53 +02:00
});
2014-02-11 17:02:14 +02:00
}
exports['another test'] = function(done) {
System.import('angular').then(function(angular) {
if (!angular)
throw 'Test failed...';
done();
});
}