summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check/node.py
blob: b206e91424a08bd0e175a3f34ad0eab85f0e0768 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import subprocess
from pathlib import Path

from unit.option import option


def check_node():
    if not Path(f'{option.current_dir}/node/node_modules').exists():
        return False

    try:
        v_bytes = subprocess.check_output(['/usr/bin/env', 'node', '-v'])

        return [str(v_bytes, 'utf-8').lstrip('v').rstrip()]

    except subprocess.CalledProcessError:
        return False