test: Implement execution model tests

This commit is contained in:
Faruk AYDIN
2024-09-30 17:22:04 +03:00
parent c9de9fa185
commit 2d8faf849e
2 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`Execution model > jsonSchema should have correct validations 1`] = `
{
"properties": {
"createdAt": {
"type": "string",
},
"deletedAt": {
"type": "string",
},
"flowId": {
"format": "uuid",
"type": "string",
},
"id": {
"format": "uuid",
"type": "string",
},
"internalId": {
"type": "string",
},
"testRun": {
"default": false,
"type": "boolean",
},
"updatedAt": {
"type": "string",
},
},
"type": "object",
}
`;