Make sure you have Chrome installed on your machine.
Running all test at once:
npm tRunning above script is essentially running following scripts in serial:
# Build all packages first
npm run build
# Run unit tests in ./test/unit
npm run test:unit
# Run integration tests in ./test/integration
npm run test:integrationBuilding all the packages:
npm run buildBuilding individual package:
pnpm run build --filter <package-name>Or build and watch individual package:
pnpm run dev --filter <package-name>Make sure you have run npm run build once.
node packages/ream/cli ./test/integration/404-page
# OR
node packages/ream/cli ./examples/automatic-routing