Remove 'selector-16' which the macos emoji picker inserts, and handle it being present

This commit is contained in:
2021-12-20 22:48:10 -08:00
parent c06ca5dad2
commit c7e09adba2
10 changed files with 130 additions and 65 deletions

View File

@@ -5,10 +5,10 @@ testShouldBailIfRequirementsNotMet() {
#!/usr/bin/env bash
_verify-prerequisites() { false; }
hello() { echo "Hello, World!" ; }
⚡hello() { echo "Hello, World!" ; }
' > go
echo "source $REPO_ROOT/⚡" >> go
echo "source $REPO_ROOT/⚡" >> go
chmod +x go
try ./go
@@ -21,10 +21,10 @@ testShouldNotBailWhenPrereqsAreAllGood() {
#!/usr/bin/env bash
_verify-prerequisites() { true; }
hello() { echo "Hello, World!" ; }
⚡hello() { echo "Hello, World!" ; }
' > go
echo "source $REPO_ROOT/⚡" >> go
echo "source $REPO_ROOT/⚡" >> go
chmod +x go
try ./go