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