Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gulp
diff options
context:
space:
mode:
authorThomas Schmid <schmid-thomas@gmx.net>2020-05-23 01:26:12 +0300
committerThomas Schmid <schmid-thomas@gmx.net>2020-05-25 01:51:01 +0300
commit2e6ad5a701a7dd162c904c80327a469581c74484 (patch)
tree0911b05826b75c5b2a56d7969405557dcc0881e7 /gulp
parentcbfa43ff267e391f12dfc7ff380663f93c8583a8 (diff)
Make test framework compatible with node.
Diffstat (limited to 'gulp')
-rw-r--r--gulp/gulpfile.testing.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/gulp/gulpfile.testing.js b/gulp/gulpfile.testing.js
index fd8b72de..93df2312 100644
--- a/gulp/gulpfile.testing.js
+++ b/gulp/gulpfile.testing.js
@@ -17,16 +17,6 @@ const path = require('path');
const BUILD_DIR_TEST = path.join(common.BASE_DIR_BUILD, "test/");
/**
- * Copies jquery into the test folder.
- */
-async function packageJQuery() {
- "use strict";
-
- await common.packageJQuery(
- `${BUILD_DIR_TEST}/common/jquery/`);
-}
-
-/**
* Copies the common files into the test folder.
*/
async function packageCommon() {
@@ -54,22 +44,6 @@ async function packageTestSuite() {
}
/**
- * Copies the addons source files into the test folder.
- */
-async function packageAddonSrc() {
- "use strict";
-
- const BASE_PATH = "./src/addon/chrome/chromeFiles/content";
-
- await src([
- BASE_PATH + "/**",
-
- "!" + BASE_PATH + "/filterList",
- "!" + BASE_PATH + "/filterList/**"
- ]).pipe(dest(BUILD_DIR_TEST + "/addon/"));
-}
-
-/**
* Watches for changed source files and copies them into the build directory.
*/
function watchSrc() {
@@ -89,8 +63,6 @@ function watchSrc() {
exports["package"] = parallel(
packageCommon,
- packageAddonSrc,
- packageJQuery,
packageTestSuite
);