15 lines
263 B
Bash
Executable File
15 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
mkdir -p .tmp/modules
|
|
|
|
./node_modules/.bin/sinopia ./tests/config.yml & echo $! >> .tmp/sinopia.pid
|
|
./node_modules/.bin/github-release-fake-server -p 4343 & echo $! >> .tmp/ghrs.pid
|
|
|
|
sleep 0.5
|
|
|
|
cp ~/.npmrc .tmp/.npmrc
|
|
|
|
cp tests/.npmrc ~/.npmrc
|