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