registry tests

This commit is contained in:
guybedford
2014-02-15 19:54:56 +02:00
parent ca5d8df404
commit aaf1a2cfc8
9 changed files with 65 additions and 23 deletions
-16
View File
@@ -4,20 +4,4 @@ exports['load test'] = function(done) {
System.import('angular').then(function() {
done();
});
}
exports['another test'] = function(done) {
System.import('angular').then(function(angular) {
document.querySelector("#sandbox").innerHTML = someHTML;
if (!angular)
throw 'Test failed...';
setTimeout(done, 1000);
});
}
exports['last test'] = function(done) {
done();
}