mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-13 03:06:06 +08:00
17 lines
505 B
Markdown
17 lines
505 B
Markdown
## Running Livebook test suite
|
|
|
|
### Unit tests
|
|
|
|
```
|
|
$ mix test
|
|
```
|
|
|
|
### Teams tests
|
|
|
|
Integration with Livebook Teams requires cloning the private Livebook Teams repository. By default it is expected to be in sibling directory to Livebook itself. But you can set `TEAMS_PATH` to a custom directory.
|
|
|
|
Livebook should take care of automatically setting up the Teams repository for you. However, if you run into issues, you can run the following in the Teams repository:
|
|
|
|
```
|
|
$ MIX_ENV=livebook mix setup
|
|
```
|