https://github.com/freeCodeCamp/curriculum-helpers
An internal package that allows thorough testing of challenges between multiple freeCodeCamp platforms.
https://github.com/freeCodeCamp/curriculum-helpers
Last synced: 4 months ago
JSON representation
An internal package that allows thorough testing of challenges between multiple freeCodeCamp platforms.
- Host: GitHub
- URL: https://github.com/freeCodeCamp/curriculum-helpers
- Owner: freeCodeCamp
- License: bsd-3-clause
- Created: 2022-04-20T06:44:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-13T16:18:50.000Z (about 1 year ago)
- Last Synced: 2024-11-22T02:50:37.172Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 2.2 MB
- Stars: 20
- Watchers: 6
- Forks: 13
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- jimsghstars - freeCodeCamp/curriculum-helpers - An internal package that allows thorough testing of challenges between multiple freeCodeCamp platforms. (Python)
README
# Curriculum Helpers
https://opensource.freecodecamp.org/curriculum-helpers/
BSD-3-Clause © [freeCodeCamp.org](https://freecodecamp.org)
[npm-image]: https://badge.fury.io/js/curriculum-helpers.svg
[npm-url]: https://npmjs.org/package/curriculum-helpers
[travis-image]: https://travis-ci.com/freeCodeCamp/curriculum-helpers.svg?branch=master
[travis-url]: https://travis-ci.com/freeCodeCamp/curriculum-helpers
[daviddm-image]: https://david-dm.org/freeCodeCamp/curriculum-helpers.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/freeCodeCamp/curriculum-helpers
## Running tests
To run the tests in watch mode, you can use the following command:
```bash
pnpm test:watch
```
This spawns two vitest processes and you can interact with them in the terminal. However, input is passed to the processes in sequence making it tricky to use.
To get a standard vitest interface, you can run the tests separately:
```bash
pnpm test:unit --watch
# or
pnpm test:integration --watch
```