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:
@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user