From 74634c3317a116077a008375e20d6a5b99b1256e Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Wed, 9 Sep 2020 11:03:11 +0200 Subject: [PATCH] test: Rename module to match conventions --- test/integrationPackage/cloudformation.tests.js | 2 +- test/integrationPackage/lambda-files.tests.js | 2 +- test/utils/{child-process.js => childProcess.js} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename test/utils/{child-process.js => childProcess.js} (100%) diff --git a/test/integrationPackage/cloudformation.tests.js b/test/integrationPackage/cloudformation.tests.js index 54b9e41675d..7726636d577 100644 --- a/test/integrationPackage/cloudformation.tests.js +++ b/test/integrationPackage/cloudformation.tests.js @@ -4,7 +4,7 @@ const fs = require('fs'); const path = require('path'); const { expect } = require('chai'); const fse = require('fs-extra'); -const { execSync } = require('../utils/child-process'); +const { execSync } = require('../utils/childProcess'); const serverlessExec = require('../serverlessBinary'); const { getTmpDirPath } = require('../utils/fs'); diff --git a/test/integrationPackage/lambda-files.tests.js b/test/integrationPackage/lambda-files.tests.js index 097ac3fc083..33fc7399975 100644 --- a/test/integrationPackage/lambda-files.tests.js +++ b/test/integrationPackage/lambda-files.tests.js @@ -3,7 +3,7 @@ const path = require('path'); const { expect } = require('chai'); const fse = require('fs-extra'); -const { execSync } = require('../utils/child-process'); +const { execSync } = require('../utils/childProcess'); const serverlessExec = require('../serverlessBinary'); const { getTmpDirPath, listZipFiles } = require('../utils/fs'); diff --git a/test/utils/child-process.js b/test/utils/childProcess.js similarity index 100% rename from test/utils/child-process.js rename to test/utils/childProcess.js