From 7b3101778b4f7e38d8262c511df0dc11e0036d40 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 14 Oct 2013 21:44:57 -0700 Subject: [PATCH] Use path.join for benchmark fixtures path --- benchmark/benchmark-helper.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark-helper.coffee b/benchmark/benchmark-helper.coffee index 5b94da991..b920a48c6 100644 --- a/benchmark/benchmark-helper.coffee +++ b/benchmark/benchmark-helper.coffee @@ -11,7 +11,7 @@ window.fbenchmark = (args...) -> window.benchmark(args..., focused: true) window.fpbenchmark = (args...) -> window.benchmark(args..., profile: true, focused: true) window.pfbenchmark = window.fpbenchmark -window.benchmarkFixturesProject = new Project(fsUtils.resolveOnLoadPath('../benchmark/fixtures')) +window.benchmarkFixturesProject = new Project(path.join(__dirname, 'fixtures')) beforeEach -> window.project = window.benchmarkFixturesProject