Is the export TMP="$BATS_TEST_DIRNAME/tmp" necessary? I'm using bats to test a gulp thing, which causes an issue with v8flags. The problem is that the js-v8flags module expects $TMP to exist, which is a reasonable assumption. I'm guessing this would create errors for other use cases as well...
Is the
export TMP="$BATS_TEST_DIRNAME/tmp"
necessary? I'm usingbats
to test agulp
thing, which causes an issue with v8flags. The problem is that the js-v8flags module expects$TMP
to exist, which is a reasonable assumption. I'm guessing this would create errors for other use cases as well...