https://github.com/gemini-testing/testplane-docs
Docs website of Testplane framework
https://github.com/gemini-testing/testplane-docs
testplane
Last synced: about 1 month ago
JSON representation
Docs website of Testplane framework
- Host: GitHub
- URL: https://github.com/gemini-testing/testplane-docs
- Owner: gemini-testing
- License: mit
- Created: 2024-03-26T13:36:01.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-08T00:44:45.000Z (about 2 months ago)
- Last Synced: 2025-04-08T01:29:22.570Z (about 2 months ago)
- Topics: testplane
- Language: MDX
- Homepage:
- Size: 18.9 MB
- Stars: 0
- Watchers: 8
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Testplane Docs Website
Testplane is a modern and robust end-to-end testing framework. It features support for every browser with a single API, testing on real devices, great extensibility and vast visual testing capabilities.
This repository is a home for Testplane docs website.
## Development
### Install dependencies
```shell
nvm use
npm ci
```### Run local dev server
```shell
npm start
```This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Check your changes
This repository uses TypeScript, Eslint and Prettier.
To run all tests available, run:
```shell
npm test
```To check types, run:
```shell
npm run typecheck
```To fix code issues and formatting, run:
```shell
npm run reformat
```