Skip to content

Commit fdf9300

Browse files
committed
Run server tests for app dir
1 parent ec9f668 commit fdf9300

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/nextjs/test/run-integration-tests.sh

+2-6
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,8 @@ for NEXTJS_VERSION in 10 11 12 13; do
147147
# we keep this updated as we run the tests, so that if it's ever non-zero, we can bail
148148
EXIT_CODE=0
149149

150-
if [ "$USE_APPDIR" == true ]; then
151-
echo "Skipping server tests for appdir"
152-
else
153-
echo "[nextjs@$NEXTJS_VERSION | webpack@$WEBPACK_VERSION] Running server tests with options: $args"
154-
(cd .. && yarn test:integration:server) || EXIT_CODE=$?
155-
fi
150+
echo "[nextjs@$NEXTJS_VERSION | webpack@$WEBPACK_VERSION] Running server tests with options: $args"
151+
(cd .. && yarn test:integration:server) || EXIT_CODE=$?
156152

157153
if [ $EXIT_CODE -eq 0 ]; then
158154
echo "[nextjs@$NEXTJS_VERSION | webpack@$WEBPACK_VERSION] Server integration tests passed"

0 commit comments

Comments
 (0)