cursive-multiplex 0.2.14

A tmux like multiplexer for gyscos/cursive views
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

set -e

die() {
    printf "\e[31:1mError: %s\e[0m\n" "$1" >&2
    exit 1
}

(
    cd "$(git rev-parse --show-toplevel)/tests" || die "folder not found: tests"

    ./node_modules/.bin/jest --updateSnapshot || die "failed to update snapshots"
)