mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-03-29 22:20:30 +08:00
9 lines
248 B
Bash
9 lines
248 B
Bash
#!/bin/bash
|
|
|
|
node node_modules/coffee-script/bin/coffee app.coffee &
|
|
sleep 1s
|
|
SERVER_PID="$!"
|
|
node node_modules/coffee-script/bin/coffee TEST/API/init.coffee
|
|
node node_modules/jasmine-node/bin/jasmine-node --junitreport TEST/API
|
|
kill "$SERVER_PID"
|