Add department_selfserve_path_confirmations table and enhance PingApiTest

Introduce a new database table `department_selfserve_path_confirmations` to store path confirmations related to department configurations. Update `PingApiTest` to verify additional keys, ensuring `backend_version` and `api_commit_sha` are checked in the response.
This commit is contained in:
Jeppe Bundgaard
2026-05-27 17:35:16 +02:00
parent d52ceb8513
commit b7aeb11801
15 changed files with 2104 additions and 46 deletions
+3 -1
View File
@@ -17,5 +17,7 @@ it('returns the ping contract', function (): void {
expect($response->data())
->toBeArray()
->toHaveKey('message', 'pong')
->toHaveKey('time');
->toHaveKey('time')
->toHaveKey('backend_version')
->toHaveKey('api_commit_sha');
});