7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
suite('Angular', function() {
|
|
test('load', function(done) {
|
|
System.import('angular').then(function() {
|
|
done();
|
|
});
|
|
});
|
|
}); |