From 5fbfeb1ccd8d19fc20b5eb7b22369e71395484cc Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 28 Mar 2019 17:10:37 +0100 Subject: [PATCH] move test script into the scripts directory --- package.json | 2 +- TestSelenium.js => scripts/TestSelenium.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename TestSelenium.js => scripts/TestSelenium.js (100%) diff --git a/package.json b/package.json index 1a84f2c65..91365dc18 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .", "lint:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/", "flow": "./node_modules/.bin/flow", - "test": "node TestSelenium.js", + "test": "node scripts/TestSelenium.js", "template": "cd customize.dist/src && for page in ../index.html ../privacy.html ../terms.html ../about.html ../contact.html ../what-is-cryptpad.html ../features.html ../../www/login/index.html ../../www/register/index.html ../../www/user/index.html;do echo $page; cp template.html $page; done;" } } diff --git a/TestSelenium.js b/scripts/TestSelenium.js similarity index 100% rename from TestSelenium.js rename to scripts/TestSelenium.js