test: Add tests for Identity model

This commit is contained in:
Faruk AYDIN
2024-10-02 10:52:05 +03:00
parent 5009319f91
commit 0a1b6931af
2 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`Identity model > jsonSchema should have correct validations 1`] = `
{
"properties": {
"id": {
"format": "uuid",
"type": "string",
},
"providerId": {
"format": "uuid",
"type": "string",
},
"providerType": {
"enum": [
"saml",
],
"type": "string",
},
"remoteId": {
"minLength": 1,
"type": "string",
},
"userId": {
"format": "uuid",
"type": "string",
},
},
"required": [
"providerId",
"remoteId",
"userId",
"providerType",
],
"type": "object",
}
`;