An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

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
```