UNPKG

619 BMarkdownView Raw
1# Contributing
2
3Please, have a look at the [wiki](https://framagit.org/framasoft/ep_mypads/wikis/home).
4
5## Tests
6
7Tests can be launched with `npm run test`.
8
9## LDAP tests
10
11LDAP tests an be launched with `npm run test-ldap`.
12
13You will need to have the [mockup LDAP server](https://github.com/rroemhild/docker-test-openldap) launched on your computer to run the LDAP tests:
14
15The first time you start the container:
16
17```
18docker run --privileged -d -p 389:389 rroemhild/test-openldap --name test-openldap
19```
20
21After the first start of the container, you will be able to start it with:
22
23```
24docker start test-openldap
25```