#!/bin/bash

function JEST_CONFIG {
    echo "$PACKAGE_ROOT/jest.config.json"
}

function JEST_DETECTED {
    node.module_installed "jest" || fs.file_exists "$JEST_CONFIG"
    bool.from_exit_status $?
}
