mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
588 B
32 lines
588 B
4 years ago
|
# JS
|
||
|
|
||
|
Tests that use node to do JavaScript exercises
|
||
|
|
||
|
## Run test locally
|
||
|
|
||
|
### Installation
|
||
|
|
||
|
> You need node version 14+
|
||
|
|
||
|
```bash
|
||
|
# Clone the repo
|
||
|
git clone https://github.com/01-edu/public.git
|
||
|
|
||
|
# go into the dom directory
|
||
|
cd public/js/tests
|
||
|
```
|
||
|
|
||
|
### Executing a test
|
||
|
|
||
|
```bash
|
||
|
# run a test
|
||
|
node test.mjs /user/you/piscine-repo exercise-name
|
||
|
```
|
||
|
|
||
|
The first argument `/user/you/piscine-repo` is the directory
|
||
|
where the test should look for your solution,
|
||
|
usualy your piscine repository.
|
||
|
|
||
|
The second argument `exercise-name` should match exactly
|
||
|
the name of an exercise, not including `.js`
|