refactor: move rtts-assert into modules directory

The rtts assertion lib is only needed for js, 
but it should be treated like any other module (e.g. facade, …)
This commit is contained in:
Tobias Bosch
2014-09-26 17:36:57 -07:00
parent c3b442ea53
commit c8cf03f200
9 changed files with 789 additions and 10 deletions

View File

@ -7,6 +7,9 @@ Object.keys(window.__karma__.files).forEach(function(path) {
.replace(/\/src\//, '/')
.replace(/\/test\//, '/')
.replace(/\.\w*$/, '');
System.get(moduleName).main();
var mod = System.get(moduleName);
if (mod.main) {
mod.main();
}
}
});