mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-24 16:08:33 -05:00
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CMD="$1"
|
|
ARGS="$2"
|
|
|
|
npm run $CMD $ARGS & \
|
|
chokidar 'test/**/*' 'lib/**/*' \
|
|
-c "npm run $CMD $ARGS" \
|
|
--polling \
|
|
--poll-interval=250
|