Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/localDevelopment.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@ npm run test:unit
npm run test:integration
```

### Run individual tests

It's also possible to run individual tests. Below are some examples.

```bash
npm run test:unit UpdateCollectionFeaturedItems.test.ts
```

```bash
npm run test:functional UpdateCollectionFeaturedItems.test.ts
```

```bash
npm run test:integration CollectionsRepository.test.ts
```

#### Configure the integration testing environment

The integration testing environment uses different environment variables, defined in a .env file, available in the _test/integration/environment_ folder.
Expand Down