Files
medusa-store/scripts/generate-fixtures.sh
Sebastian Rindom 8edb32c742 docs: oas (#197)
Adds OpenAPI specification of Storefront and Admin APIs.
Updates docs project.
2021-03-10 11:51:54 +01:00

20 lines
240 B
Bash
Executable File

#!/bin/bash
FIXTURE_PATTERN=$1
lerna run build
cd docs-util/fixture-gen
yarn
yarn link @medusajs/medusa medusa-interfaces
cd ../..
if [ "$FIXTURE_PATTERN" ]; then
yarn test:fixtures -t $FIXTURE_PATTERN
else
yarn test:fixtures
fi