#!/bin/bash
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
npm run test:integration
else
npm run test
fi