bump version numbers to force fresh browser fetch and suppress "editor is not defined". closes #

This commit is contained in:
terakilobyte
2015-05-28 14:13:31 -04:00
parent e7b9a90fbe
commit 131b9ad1b7
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
(function() {
var expect = chai.expect;
var tests = parent.tests;
var editor = parent.editorValueForIFrame;
for (var i = 0; i < tests.length; i++) {
var thisTest = true;
try {
eval(parent.tests[i]);
} catch (err) {
allTestsGood = false;
thisTest = false;
parent.postError(JSON.stringify(err.message.split(':').shift()));
} finally {
if (thisTest) {
parent.postSuccess(JSON.stringify(tests[i].split(',').pop().replace(/\'/g, '').replace(/\)/, '')));
}
}
}
})();