#!/bin/sh
set -e

if [ "$CI" = "true" ]; then
  npm ci
else
  npm install
fi

node test/products/create.js
node test/products/index.js
