1 parent f33cf76 commit 3d7a284Copy full SHA for 3d7a284
1 file changed
test/ProfilingPlugin.unittest.js
@@ -6,14 +6,14 @@ const ProfilingPlugin = require("../lib/debug/ProfilingPlugin");
6
describe("Profiling Plugin", () => {
7
it("should persist the passed outpath", () => {
8
const plugin = new ProfilingPlugin({
9
- outPath: "invest_in_doge_coin"
+ outputPath: "invest_in_doge_coin"
10
});
11
- plugin.outPath.should.equal("invest_in_doge_coin");
+ plugin.outputPath.should.equal("invest_in_doge_coin");
12
13
14
it("should handle no options", () => {
15
const plugin = new ProfilingPlugin();
16
- plugin.outPath.should.equal("events.json");
+ plugin.outputPath.should.equal("events.json");
17
18
19
it("should handle when unable to require the inspector", (done) => {
0 commit comments