72 lines
1.8 KiB
Bash
72 lines
1.8 KiB
Bash
#!/bin/bash
|
|
source scripts/qa/lib/bash/prelude.sh
|
|
|
|
# Create the next app in /tmp
|
|
REMIX_APP_PATH="/tmp/test-remix-app"
|
|
echo "Creating remix app in $REMIX_APP_PATH"
|
|
echo ""
|
|
|
|
# Remove prev project and run create-next-app
|
|
npx create-remix@latest $REMIX_APP_PATH -y
|
|
|
|
# write to .env
|
|
echo "OPENAI_API_KEY=$OPENAI_API_KEY" > $REMIX_APP_PATH/.env
|
|
|
|
npm_install_packages $REMIX_APP_PATH
|
|
|
|
cp scripts/qa/lib/remix/_index.tsx $REMIX_APP_PATH/app/routes/_index.tsx
|
|
|
|
# Open VSCode
|
|
code $REMIX_APP_PATH
|
|
|
|
prompt "Open _index.tsx. Is it without errors in VSCode?"
|
|
|
|
cp scripts/qa/lib/remix/copilotkit.tsx $REMIX_APP_PATH/app/routes/copilotkit.tsx
|
|
|
|
prompt "Open copilotkit.tsx. Is it without errors in VSCode?"
|
|
|
|
# Temporarily disable -e
|
|
set +e
|
|
|
|
pushd $REMIX_APP_PATH
|
|
|
|
npm run build
|
|
|
|
exit_status=$?
|
|
|
|
if [ $exit_status -eq 0 ]; then
|
|
succeed "$pkg_manager build succeeded."
|
|
else
|
|
fail "$pkg_manager build failed with status $exit_status."
|
|
exit 1
|
|
fi
|
|
|
|
# Re-enable -e
|
|
set -e
|
|
|
|
npm run dev > /dev/null 2>&1 &
|
|
|
|
pid1=$!
|
|
|
|
popd
|
|
|
|
prompt "Open http://localhost:5173. Is the page without errors?"
|
|
prompt "Chat to check if regular text and message history works (2x)?"
|
|
prompt "Ask the copilot to change the message. Is the message changed?"
|
|
prompt "Ask the copilot to change the message again. Is the message changed?"
|
|
prompt "Ask for a long message. Does the custom render work & stream?"
|
|
prompt "Does it provide the current message when asked?"
|
|
prompt "Test the keyboard shortcut cmd-\\ to open close the sidebar. Does it work?"
|
|
prompt "Does the text input autofocus when the sidebar is opened?"
|
|
prompt "In the text area, start a text about elephants. Does the autosuggestions work?"
|
|
|
|
killall next-server;
|
|
|
|
succeed "Test completed successfully."
|
|
|
|
echo "===================="
|
|
echo "Test completed at $(date)"
|
|
echo "===================="
|
|
|
|
exit 0
|