From d9c28fa10da63678ed539c15b91c3a92c90ab5b6 Mon Sep 17 00:00:00 2001 From: Anne Erdtsieck Date: Thu, 31 Oct 2024 13:37:13 +0100 Subject: [PATCH] Link testing doc pages on testing projections --- docs/testing/integration.md | 6 ++---- .../Properties/launchSettings.json | 12 ++++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 src/AspNetODataWithMarten/Properties/launchSettings.json diff --git a/docs/testing/integration.md b/docs/testing/integration.md index b7b0077a52..dea3c982b6 100644 --- a/docs/testing/integration.md +++ b/docs/testing/integration.md @@ -367,11 +367,9 @@ Furthermore it could be beneficial to disable all external wolverine transports services.DisableAllExternalWolverineTransports(); ``` -## Testing Event Projections +## Testing Projections -// TODO - -There is still some discussion on how to leverage this: [Add testing helpers for async projections #2624](https://github.com/JasperFx/marten/issues/2624). +Testing all types of projections (live, inline, async) is explained here: [Testing Projections](/events/projections/testing). ## Additional Tips diff --git a/src/AspNetODataWithMarten/Properties/launchSettings.json b/src/AspNetODataWithMarten/Properties/launchSettings.json new file mode 100644 index 0000000000..06c2da1dac --- /dev/null +++ b/src/AspNetODataWithMarten/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "AspNetODataWithMarten": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:50727;http://localhost:50728" + } + } +} \ No newline at end of file