Cleanup imports

This commit is contained in:
rejas
2019-06-04 10:43:06 +02:00
parent 69aafd7d6a
commit 702b98f510
26 changed files with 11 additions and 103 deletions

View File

@@ -1,5 +1,4 @@
const chai = require("chai");
const expect = chai.expect;
const expect = require("chai").expect;
const path = require("path");
const {JSDOM} = require("jsdom");
@@ -29,4 +28,3 @@ describe("Test function cmpVersions in js/module.js", function() {
expect(cmp("1.1", "1.0")).to.equal(1);
});
});