From bd719b0ef6a58ba27539d653523712d1bbeb2ac6 Mon Sep 17 00:00:00 2001 From: Borys Levytskyi Date: Sun, 12 Apr 2015 14:16:59 +0300 Subject: [PATCH] Renamed integration to e2e tests --- e2e.bat | 1 + conf.js => tests/e2e.chrome.conf.js | 2 +- tests/{integration => e2e}/spec.js | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 e2e.bat rename conf.js => tests/e2e.chrome.conf.js (88%) rename tests/{integration => e2e}/spec.js (100%) diff --git a/e2e.bat b/e2e.bat new file mode 100644 index 0000000..8b9c3ca --- /dev/null +++ b/e2e.bat @@ -0,0 +1 @@ +protractor tests\e2e.chrome.conf.js \ No newline at end of file diff --git a/conf.js b/tests/e2e.chrome.conf.js similarity index 88% rename from conf.js rename to tests/e2e.chrome.conf.js index d6d3c09..40f8348 100644 --- a/conf.js +++ b/tests/e2e.chrome.conf.js @@ -2,7 +2,7 @@ exports.config = { seleniumAddress: 'http://127.0.0.1:4444/wd/hub', specs: [ - './tests/integration/spec.js' + './e2e/spec.js' ], capabilities: { diff --git a/tests/integration/spec.js b/tests/e2e/spec.js similarity index 100% rename from tests/integration/spec.js rename to tests/e2e/spec.js