Fix some more undefs that popped up out of nowhere

This commit is contained in:
Veeck
2020-05-05 14:54:49 +02:00
parent c8aedc6f29
commit c8a0f1d0de
5 changed files with 9 additions and 9 deletions

View File

@@ -62,7 +62,7 @@ describe("'global.root_path' set in js/app.js", function() {
});
it("should expect the global.version equals package.json file", function() {
versionPackage = JSON.parse(fs.readFileSync("package.json", "utf8")).version;
const versionPackage = JSON.parse(fs.readFileSync("package.json", "utf8")).version;
expect(this.sandbox.global.version).to.equal(versionPackage);
});
});