diff --git a/tests/Application/gulpfile.babel.js b/tests/Application/gulpfile.babel.js index 2b58b3a6..15a4f85f 100644 --- a/tests/Application/gulpfile.babel.js +++ b/tests/Application/gulpfile.babel.js @@ -1,6 +1,5 @@ import chug from 'gulp-chug'; import gulp from 'gulp'; -import upath from 'path'; import yargs from 'yargs'; const { argv } = yargs @@ -11,12 +10,6 @@ const { argv } = yargs requiresArg: true, required: false, }, - vendorPath: { - description: ' path to vendor directory', - type: 'string', - requiresArg: true, - required: false, - }, nodeModulesPath: { description: ' path to node_modules directory', type: 'string', @@ -28,10 +21,6 @@ const { argv } = yargs const config = [ '--rootPath', argv.rootPath || '../../../../../../../tests/Application/web/assets', - ...(argv.vendorPath ? [ - '--vendorPath', - upath.joinSafe(argv.vendorPath, 'sylius/sylius/src/Sylius/Bundle'), - ] : []), '--nodeModulesPath', argv.nodeModulesPath || '../../../../../../../tests/Application/node_modules', ];