We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9f668 commit fdf9300Copy full SHA for fdf9300
packages/nextjs/test/run-integration-tests.sh
@@ -147,12 +147,8 @@ for NEXTJS_VERSION in 10 11 12 13; do
147
# we keep this updated as we run the tests, so that if it's ever non-zero, we can bail
148
EXIT_CODE=0
149
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
+ echo "[nextjs@$NEXTJS_VERSION | webpack@$WEBPACK_VERSION] Running server tests with options: $args"
+ (cd .. && yarn test:integration:server) || EXIT_CODE=$?
156
157
if [ $EXIT_CODE -eq 0 ]; then
158
echo "[nextjs@$NEXTJS_VERSION | webpack@$WEBPACK_VERSION] Server integration tests passed"
0 commit comments