From 488bccd402feb5b9c9dc9bbb7f3340b6c0835393 Mon Sep 17 00:00:00 2001 From: Jake Marsh Date: Wed, 11 May 2016 21:04:52 -0700 Subject: [PATCH] fix const vs let --- gulp/tasks/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/test.js b/gulp/tasks/test.js index 41ab247..a3a4984 100644 --- a/gulp/tasks/test.js +++ b/gulp/tasks/test.js @@ -12,7 +12,7 @@ gulp.task('test', () => { // Allow specification of a single test file if ( argv.f || argv.file ) { - const singleFile = argv.f || argv.file; + let singleFile = argv.f || argv.file; // Allow omission of directory and/or extension if ( singleFile.indexOf('tests/') === -1 ) { singleFile = `tests/${singleFile}`; }