Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ exports[`parseValidationErrorMessage > parses validation errors from workflow wi
]
`;

exports[`parseWorkflow > parses valid 'JSON' and returns model with no errors 1`] = `
exports[`parseWorkflow > parses valid JSON and returns model with no errors 1`] = `
{
"errors": [],
"model": Workflow {
Expand All @@ -683,7 +683,7 @@ exports[`parseWorkflow > parses valid 'JSON' and returns model with no errors 1`
}
`;

exports[`parseWorkflow > parses valid 'YAML' and returns model with no errors 1`] = `
exports[`parseWorkflow > parses valid YAML and returns model with no errors 1`] = `
{
"errors": [],
"model": Workflow {
Expand All @@ -706,7 +706,7 @@ exports[`parseWorkflow > parses valid 'YAML' and returns model with no errors 1`
}
`;

exports[`parseWorkflow > returns model and errors for invalid but parseable 'JSON' 1`] = `
exports[`parseWorkflow > returns model and errors for invalid but parseable JSON 1`] = `
{
"errors": [
{
Expand All @@ -728,7 +728,7 @@ exports[`parseWorkflow > returns model and errors for invalid but parseable 'JSO
}
`;

exports[`parseWorkflow > returns model and errors for invalid but parseable 'YAML' 1`] = `
exports[`parseWorkflow > returns model and errors for invalid but parseable YAML 1`] = `
{
"errors": [
{
Expand Down
Loading