diff --git a/docs/recipes/debugging-with-vscode.md b/docs/recipes/debugging-with-vscode.md index 432ae7c69..243613dea 100644 --- a/docs/recipes/debugging-with-vscode.md +++ b/docs/recipes/debugging-with-vscode.md @@ -1,5 +1,7 @@ # Debugging tests with Visual Studio Code +Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/docs/recipes/debugging-with-vscode.md) + ## Setup In the sidebar click the `Debug` handle. diff --git a/docs/recipes/isolated-mongodb-integration-tests.md b/docs/recipes/isolated-mongodb-integration-tests.md index 6f5131ec2..fd980e561 100644 --- a/docs/recipes/isolated-mongodb-integration-tests.md +++ b/docs/recipes/isolated-mongodb-integration-tests.md @@ -1,5 +1,7 @@ # Isolated MongoDB integration tests +Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/docs/recipes/isolated-mongodb-integration-tests.md) + > How to run disposable MongoDB databases in your AVA tests with per-test isolation. This uses [`MongoMem`](https://github.com/CImrie/mongomem), which allows you to quickly run a temporary MongoDB server locally. It uses temporary file storage which is destroyed when the server stops.