Files
automatisch/packages/backend/src/models/__snapshots__/execution.test.js.snap
2024-09-30 17:25:15 +03:00

34 lines
603 B
Plaintext

// 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",
}
`;