From 01e8601f7f939421efb90c36b575e72e5ab23c39 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Tue, 24 May 2016 10:01:51 +0200 Subject: [PATCH] :art: runCoreSpecs -> runRendererProcessSpecs --- build/tasks/spec-task.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/tasks/spec-task.coffee b/build/tasks/spec-task.coffee index 9ee85a50b..48138d05c 100644 --- a/build/tasks/spec-task.coffee +++ b/build/tasks/spec-task.coffee @@ -72,7 +72,7 @@ module.exports = (grunt) -> packageSpecQueue.concurrency = Math.max(1, concurrency - 1) packageSpecQueue.drain = -> callback(null, failedPackages) - runCoreSpecs = (callback) -> + runRendererProcessSpecs = (callback) -> appPath = getAppPath() resourcePath = process.cwd() coreSpecsPath = path.resolve('spec') @@ -141,9 +141,9 @@ module.exports = (grunt) -> if process.env.ATOM_SPECS_TASK is 'packages' [runPackageSpecs] else if process.env.ATOM_SPECS_TASK is 'core' - [runCoreSpecs, runMainProcessSpecs] + [runRendererProcessSpecs, runMainProcessSpecs] else - [runCoreSpecs, runMainProcessSpecs, runPackageSpecs] + [runRendererProcessSpecs, runMainProcessSpecs, runPackageSpecs] method specs, (error, results) -> failedPackages = []