/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/node_compat/schema.json
102 строки
4 KB
em
chore: upgrade WPT submodule and refresh all expectations (#34573)
02 июн 2026, 21:21
Не верифицирован
02 июн 2026, 21:21
6b92f8c
Код
Авторство
О чём код?
{ "$id": "https://github.com/denoland/deno/blob/main/tests/node_compat/schema.json", "$schema": "http://json-schema.org/draft-07/schema", "description": "Schema for the node_compat config.jsonc file that controls which Node.js compatibility tests are enabled and their expected behavior.", "title": "Node compat test config schema", "type": "object", "required": ["tests"], "properties": { "$schema": { "type": "string" }, "tests": { "type": "object", "description": "Map of test file paths to their configuration. Keys are relative paths like 'parallel/test-foo.js'.", "additionalProperties": { "$ref": "#/definitions/testConfig" } } }, "additionalProperties": false, "definitions": { "expectedFailure": { "type": "object", "description": "Describes an expected test failure with optional exit code and/or output pattern.", "properties": { "exitCode": { "type": "integer", "description": "Expected exit code when the test fails." }, "output": { "type": "string", "description": "Expected output pattern. Supports [WILDCARD] for matching any text." } }, "additionalProperties": false }, "platformExpectation": { "description": "Per-platform expectation: true = run normally (expect pass), false = skip, or an object describing an expected failure.", "oneOf": [ { "type": "boolean", "description": "true = enabled (expect pass), false = disabled (skip on this platform)" }, { "$ref": "#/definitions/expectedFailure" } ] }, "testConfig": { "type": "object", "description": "Configuration for a single test.", "properties": { "flaky": { "type": "boolean", "description": "If true, the test is considered flaky and may be retried in CI." }, "ignore": { "type": "boolean", "description": "If true, the test is skipped on all platforms. Must be used together with 'reason'." }, "windows": { "$ref": "#/definitions/platformExpectation" }, "darwin": { "$ref": "#/definitions/platformExpectation" }, "linux": { "$ref": "#/definitions/platformExpectation" }, "linuxAarch64": { "$ref": "#/definitions/platformExpectation" }, "linuxX86_64": { "$ref": "#/definitions/platformExpectation" }, "reason": { "type": "string", "description": "Explanation for why the test is disabled or has special configuration." }, "exitCode": { "type": "integer", "description": "Expected exit code for all platforms (overridden by per-platform config)." }, "output": { "type": "string", "description": "Expected output pattern for all platforms. Supports [WILDCARD] matching." }, "env": { "type": "object", "description": "Per-test environment variables, layered on top of the runner's defaults. Use sparingly — only for tests where one Node fixture needs a config the rest of the suite must not have.", "additionalProperties": { "type": "string" } }, "extraDenoArgs": { "type": "array", "description": "Extra deno run/test CLI flags for this test only. Use sparingly — typically for security knobs like --unsafely-ignore-certificate-errors that one specific test requires.", "items": { "type": "string" } } }, "additionalProperties": false } } }