To test the QuickED application, follow these steps:
-
Download the Repository
- You can either clone the repository using Git:
git clone <repository-url>
- Or download the repository as a ZIP file and extract it.
- You can either clone the repository using Git:
-
Navigate to the Project Folder
- Open a terminal and go to the
Svelte/QuickEDdirectory:cd Svelte/QuickED
- Open a terminal and go to the
-
Install Dependencies
- Install all required dependencies using npm:
npm install
- Install all required dependencies using npm:
-
Run the Development Server
- Start the app in development mode:
npm run dev
- The application will be available at the local address shown in the terminal.
4.1. (Alternative) Build the App and Preview the Production Build
- Alternatively, you can create a production version of the app:
npm run build
- Preview it locally:
npm run preview
- Start the app in development mode:
-
Run Tests
- To execute the test suite, run:
npm test - This will run all configured tests and display the results in the terminal.
- To execute the test suite, run: