Files
fil/fixtures/smoke/txt_basic.json

28 lines
573 B
JSON
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
{
"id": "smoke_txt_basic",
"category": "smoke",
"description": "Smoke test: Plain text file",
"tags": ["smoke", "text", "plaintext"],
"input": {
"path": "text/report.txt",
"mime_type": "text/plain",
"config": {}
},
"assertions": [
{
"type": "equals",
"field": "mime_type",
"value": "text/plain"
},
{
"type": "min_length",
"field": "content",
"value": 5
}
],
"skip": {
"languages": ["wasm"],
"reason": "WASM cannot access filesystem; use extractBytes with file content instead"
}
}