diff --git a/test/configCases/plugins/profiling-plugin/index.js b/test/configCases/plugins/profiling-plugin/index.js index c7b9eae8332..0e6426628c8 100644 --- a/test/configCases/plugins/profiling-plugin/index.js +++ b/test/configCases/plugins/profiling-plugin/index.js @@ -1,19 +1,21 @@ import "./test.json"; it("should generate a events.json file", () => { - var fs = require("fs"), - path = require("path"), + var fs = require("fs"), + path = require("path"), os = require("os"); expect(fs.existsSync(path.join(__dirname, "events.json"))).toBe(true); }); it("should have proper setup record inside of the json stream", () => { - var fs = require("fs"), - path = require("path"), - os = require("os"); + var fs = require("fs"), + path = require("path"), + os = require("os"); // convert json stream to valid - var source = JSON.parse(fs.readFileSync(path.join(__dirname, "events.json"), "utf-8").toString() + "{}]"); + var source = JSON.parse( + fs.readFileSync(path.join(__dirname, "events.json"), "utf-8") + ); expect(source[0].id).toEqual(1); });