* Simple wrapper around the python based validator webui tests. * @return {Promise }
()
| 50 | * @return {Promise<void>} |
| 51 | */ |
| 52 | async function validatorWebui() { |
| 53 | execOrDie('python3 build.py' + validatorArgs, { |
| 54 | cwd: 'validator/js/webui', |
| 55 | stdio: 'inherit', |
| 56 | }); |
| 57 | } |
| 58 | |
| 59 | module.exports = { |
| 60 | validator, |
nothing calls this directly
no test coverage detected