update run-osx for unit tests and iTerm new release
This commit is contained in:
parent
084f067ae8
commit
058f470ea7
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "StatusIm",
|
||||
"interface": "reagent",
|
||||
"androidHost": "10.0.3.2",
|
||||
"androidHost": "localhost",
|
||||
"modules": [
|
||||
"react-native-contacts",
|
||||
"react-native-invertible-scroll-view",
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
(def root-el (r/as-element [reloader]))
|
||||
|
||||
(figwheel/watch-and-reload
|
||||
:websocket-url "ws://10.0.3.2:3449/figwheel-ws"
|
||||
:websocket-url "ws://localhost:3449/figwheel-ws"
|
||||
:heads-up-display false
|
||||
:jsload-callback #(swap! cnt inc))
|
||||
|
||||
|
|
13
run-osx.sh
13
run-osx.sh
|
@ -17,11 +17,13 @@ function tab () {
|
|||
fi
|
||||
|
||||
osascript &>/dev/null <<EOF
|
||||
tell application "iTerm"
|
||||
tell current terminal
|
||||
launch session "Default Session"
|
||||
tell the last session
|
||||
write text "cd \"$cdto\"$cmd"
|
||||
tell application "iTerm2"
|
||||
tell current window
|
||||
set newTab to (create tab with default profile)
|
||||
tell newTab
|
||||
tell current session
|
||||
write text "cd \"$cdto\"$cmd"
|
||||
end tell
|
||||
end tell
|
||||
end tell
|
||||
end tell
|
||||
|
@ -64,4 +66,5 @@ if [ ! -z $2 ]
|
|||
then
|
||||
tab "appium"
|
||||
lein test
|
||||
lein doo node test once
|
||||
fi
|
Loading…
Reference in New Issue