angular test
This commit is contained in:
Vendored
+13
-6
@@ -1,7 +1,14 @@
|
||||
suite('Angular', function() {
|
||||
test('load', function(done) {
|
||||
System.import('angular').then(function() {
|
||||
done();
|
||||
});
|
||||
|
||||
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();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user