mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:31:15 +08:00
15 lines
232 B
Bash
Executable File
15 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit on error
|
|
set -e
|
|
|
|
# remove and recreate `cra-fixtures` directory
|
|
rm -rfd cra-fixtures
|
|
mkdir cra-fixtures
|
|
cd cra-fixtures
|
|
|
|
npx create-react-app react-scripts-latest-fixture
|
|
|
|
cd ..
|
|
./run_tests.sh -f cra-fixtures $@
|