From 44b48a954a1a4bfe07db538f28f1bcae118f98f7 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Wed, 8 Mar 2023 12:15:37 -0800 Subject: [PATCH] Remove unneed section of testing docs --- TESTING.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/TESTING.md b/TESTING.md index 74d2ebd99..3f0e58810 100644 --- a/TESTING.md +++ b/TESTING.md @@ -11,19 +11,6 @@ Before attempting to run the test suite copy the example environment file for te `cp .env.testing.example .env.testing` > Since the data in the database is flushed after each test it is recommended you create a separate mysql database for specifically for tests -Here is an example of what your `.env.testing` file might look like: - -```dotenv -# -------------------------------------------- -# REQUIRED: DATABASE SETTINGS -# -------------------------------------------- -DB_CONNECTION=mysql -DB_HOST=127.0.0.1 -DB_DATABASE=snipeit_testing -DB_USERNAME=root -DB_PASSWORD=changeme1234 -``` - Now you are ready to run the entire test suite from your terminal: `php artisan test`