File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 99# `husky` git hooks from the scaffold <-> `husky` git hooks from the mono-repo.
1010#
1111PWD=" $( pwd) "
12+ DEFAULT_WORKINGDIR=" ../create-react-microservice-test-scaffold"
13+ WORKINGDIR=${1:- $DEFAULT_WORKINGDIR }
1214
1315printf " \nCleaning up previous runs of the integration-test\n"
14- rm -rf ../create-react-microservice-test-scaffold
16+ rm -rf $WORKINGDIR
1517
1618printf " \nCreating the scaffold via the CLI\n"
1719npx create-react-microservice \
18- ../create-react-microservice-test-scaffold \
20+ $WORKINGDIR \
1921 --license=" MIT" \
2022 --npmScope=" integration-scope" \
2123 --gitRepoUrl=" https://github.com/ImmoweltGroup/create-react-microservice.git"
2224
2325printf " \nExecuting the tests within the created scaffold\n"
24- cd ../create-react-microservice-test-scaffold
26+ cd $WORKINGDIR
2527yarn run lint
2628yarn run flow
2729
You can’t perform that action at this time.
0 commit comments