mirror of
https://github.com/facebook/react.git
synced 2026-02-26 00:05:02 +00:00
10 lines
235 B
Bash
Executable File
10 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo 'Testing in fiber mode...'
|
|
./scripts/fiber/record-tests --track-facts --max-workers 1
|
|
git --no-pager diff scripts/fiber
|
|
FIBER_TESTS_STATUS=$(git status --porcelain scripts/fiber)
|
|
test -z "$FIBER_TESTS_STATUS"
|