* Simple wrapper around the python based validator tests. * @return {Promise }
()
| 13 | * @return {Promise<void>} |
| 14 | */ |
| 15 | async function validator() { |
| 16 | execOrDie('python3 build.py' + validatorArgs, { |
| 17 | cwd: 'validator', |
| 18 | stdio: 'inherit', |
| 19 | }); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Simple wrapper around the bazel based C++ validator tests. |
nothing calls this directly
no test coverage detected