mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* mkdocs plugins: add plugin for social cards and plugin that allow to exclude a folder * docs: fix hyperlinks * mkdocs: social cards (descriptions) for 'contributions' and 'deployment' guides * mkdocs: social cards (descriptions) for all 'index.md' * mkdocs: social cards (descriptions) for 'features' and 'plugins' * mkdocs: social cards (descriptions) for 'general_info' * mkdocs: social cards (descriptions) for 'configuration' * mkdocs: social cards (descriptions) for 'installation' * mkdocs: minor fixes * update librechat.svg * update how_to_contribute.md add reference to the official GitHub documentation
30 lines
534 B
Markdown
30 lines
534 B
Markdown
---
|
|
title: 🧪 Testing During Development
|
|
description: How to locally test the app during development.
|
|
weight: -6
|
|
---
|
|
|
|
# Locally test the app during development
|
|
|
|
## WIP
|
|
|
|
## Run the tests
|
|
|
|
#### 1. Install the global dependencies
|
|
|
|
```shell
|
|
npm ci
|
|
npx playwright install --with-deps
|
|
```
|
|
|
|
#### 2. Run tests
|
|
|
|
```shell
|
|
npx playwright test
|
|
```
|
|
|
|
If everything goes well, you should see a `passed` message.
|
|
|
|

|
|
|
|
|