9 lines
167 B
Bash
9 lines
167 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copy firebase lib into tests directory
|
|
mkdir tests/firebase
|
|
cp -R lib/* tests/firebase/*
|
|
|
|
# Install /tests npm packages
|
|
cd tests && npm install
|