Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitwarden/contributing-docs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8b5527f7dafbfff27d2b820991f64456416e5df0
Choose a base ref
..
head repository: bitwarden/contributing-docs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05d0165ac10c81fa5d5101e04fad848aa5e98d72
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 docs/getting-started/server/database/ef/index.mdx
6 changes: 3 additions & 3 deletions docs/getting-started/server/database/ef/index.mdx
Original file line number Diff line number Diff line change
@@ -219,8 +219,8 @@ In your `server/dev/secrets.json` file find these two blocks of secrets:
},
```
- This block is used for test databases for each supported provider type. These are what integration
tests will connect to. You should updated the password for these connection strings to match your
existing databases, if you have not already. If these settings are not present at all in your
tests will connect to. You should update the password for these connection strings to match your
existing databases if you have not already. If these settings are not present at all in your
`secrets.json` file just add them to the bottom. These settings _do not_ go in `globalSettings`.
Then run `pwsh setup_secrets.ps1 -clear` to apply them to your local projects.
```
@@ -239,5 +239,5 @@ In your `server/dev/secrets.json` file find these two blocks of secrets:
```

With connection strings applied to your projects: ensure your databases are all migrated using
`pwsh server/dev/migrate.ps1 --all`. Then you can run just EF tests from the
`pwsh server/dev/migrate.ps1 --all`. Then you can run EF tests from the
`test/Infrastructure.IntegrationTest` folder using `dotnet test`.