1
0
Fork 0

removed try/catch

This commit is contained in:
Frank Celler 2012-09-27 10:32:25 +02:00
parent a67eb55827
commit 5d21d2ac2d
1 changed files with 1 additions and 7 deletions

View File

@ -348,13 +348,7 @@ function RunTest (path) {
var content;
var f;
try {
content = SYS_READ(path);
}
catch (err) {
console.error("cannot load test file '%s'", path);
return;
}
content = SYS_READ(path);
content = "(function(jsUnity){jsUnity.attachAssertions();" + content + "})";
f = SYS_EXECUTE(content, undefined, path);