()
| 337 | @memoize |
| 338 | @ToolchainProfiler.profile() |
| 339 | def check_node(): |
| 340 | try: |
| 341 | utils.run_process([*config.NODE_JS, '-e', 'console.log("hello")'], stdout=PIPE) |
| 342 | except Exception as e: |
| 343 | exit_with_error('the configured node executable (%s) does not seem to work, check the paths in %s (%s)', config.NODE_JS, config.EM_CONFIG, e) |
| 344 | |
| 345 | |
| 346 | def generate_sanity(): |
no test coverage detected