diff --git a/test/benchmark/shimmer/instrumentation.bench.js b/test/benchmark/shimmer/instrumentation.bench.js index cbd3c34208..dd81b06a74 100644 --- a/test/benchmark/shimmer/instrumentation.bench.js +++ b/test/benchmark/shimmer/instrumentation.bench.js @@ -40,13 +40,12 @@ suite.add({ } }) -// This causes the cjs loader to fail, with benchmark not being found. -// suite.add({ -// name: 'shimmer.reinstrument()', -// agent: true, -// fn: function (agent) { -// return shimmer.reinstrument(agent, 'benchmark') -// } -// }) +suite.add({ + name: 'shimmer.reinstrument()', + agent: true, + fn: function (agent) { + return shimmer.reinstrument(agent, '../test/lib/benchmark') + } +}) suite.run()