diff --git a/.env.testing-ci b/.env.testing-ci
index 978c1895a3..a39cb5976c 100644
--- a/.env.testing-ci
+++ b/.env.testing-ci
@@ -2,7 +2,7 @@
# REQUIRED: BASIC APP SETTINGS
# --------------------------------------------
APP_ENV=testing-ci
-APP_DEBUG=true
+APP_DEBUG=false
APP_KEY=ChangeMe
APP_URL=http://localhost:8000
APP_TIMEZONE='US/Pacific'
diff --git a/resources/views/layouts/basic.blade.php b/resources/views/layouts/basic.blade.php
index d6f59b9206..173a84ac26 100644
--- a/resources/views/layouts/basic.blade.php
+++ b/resources/views/layouts/basic.blade.php
@@ -10,10 +10,10 @@
{{-- stylesheets --}}
-
+
-
+
diff --git a/tests/acceptance.suite.yml b/tests/acceptance.suite.yml
index d77619bc0b..8c6d2cd616 100644
--- a/tests/acceptance.suite.yml
+++ b/tests/acceptance.suite.yml
@@ -11,7 +11,7 @@ class_name: AcceptanceTester
modules:
enabled:
- WebDriver:
- url: 'https://snipe-it.dev:1337'
+ url: 'https://snipe-it.local:8890'
browser: 'firefox'
- \Helper\Acceptance
- Laravel5:
diff --git a/tests/acceptance/HomeCept.php b/tests/acceptance/HomeCept.php
deleted file mode 100644
index d34d93049a..0000000000
--- a/tests/acceptance/HomeCept.php
+++ /dev/null
@@ -1,8 +0,0 @@
-wantTo('sign in');
-$I->amOnPage('/login');
-$I->see('Please Login');
-$I->seeElement('input[type=text]');
-$I->seeElement('input[type=password]');
diff --git a/tests/acceptance/LoginCest.php b/tests/acceptance/LoginCest.php
new file mode 100644
index 0000000000..32f053e404
--- /dev/null
+++ b/tests/acceptance/LoginCest.php
@@ -0,0 +1,18 @@
+wantTo('sign in');
+ $I->amOnPage('/login');
+ $I->see(trans('auth/general.login_prompt'));
+ $I->seeElement('input[type=text]');
+ $I->seeElement('input[type=password]');
+ }
+}