Skip to content

Commit 3d7a284

Browse files
committed
Improvement: add schema for profiling plugin options, remove todo item: update tests
1 parent f33cf76 commit 3d7a284

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/ProfilingPlugin.unittest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const ProfilingPlugin = require("../lib/debug/ProfilingPlugin");
66
describe("Profiling Plugin", () => {
77
it("should persist the passed outpath", () => {
88
const plugin = new ProfilingPlugin({
9-
outPath: "invest_in_doge_coin"
9+
outputPath: "invest_in_doge_coin"
1010
});
11-
plugin.outPath.should.equal("invest_in_doge_coin");
11+
plugin.outputPath.should.equal("invest_in_doge_coin");
1212
});
1313

1414
it("should handle no options", () => {
1515
const plugin = new ProfilingPlugin();
16-
plugin.outPath.should.equal("events.json");
16+
plugin.outputPath.should.equal("events.json");
1717
});
1818

1919
it("should handle when unable to require the inspector", (done) => {

0 commit comments

Comments
 (0)