mirror of
https://github.com/Nikolay-Shirokov/cc-1c-skills.git
synced 2026-06-12 00:44:57 +03:00
a1b3fdd4e2
Add 195 new test cases covering examples from SKILL.md, edge cases, and parameter combinations. Create _skill.json for form-edit, skd-edit, subsystem-edit. Add fixtures for negative validate cases. Fix normalizeUuids in meta-validate/meta-info configs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
949 B
JSON
38 lines
949 B
JSON
{
|
|
"name": "Макет с пустыми строками (empty)",
|
|
"input": {
|
|
"columns": 3,
|
|
"fonts": {
|
|
"default": { "face": "Arial", "size": 10 },
|
|
"bold": { "face": "Arial", "size": 12, "bold": true }
|
|
},
|
|
"styles": {
|
|
"header": { "font": "bold", "align": "center" },
|
|
"bordered": { "border": "all" }
|
|
},
|
|
"areas": [
|
|
{
|
|
"name": "Заголовок",
|
|
"rows": [
|
|
{ "cells": [{ "col": 1, "span": 3, "style": "header", "text": "Отчёт" }] },
|
|
{ "empty": 2 }
|
|
]
|
|
},
|
|
{
|
|
"name": "Данные",
|
|
"rows": [
|
|
{ "rowStyle": "bordered", "cells": [
|
|
{ "col": 1, "param": "Код" },
|
|
{ "col": 2, "param": "Имя" },
|
|
{ "col": 3, "param": "Значение" }
|
|
]}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"params": { "outputPath": "Template.xml" },
|
|
"expect": {
|
|
"files": ["Template.xml"]
|
|
}
|
|
}
|