Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devrev-snapin-template.plain
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@

- The Conformance Tests should spin a server at http://localhost:8002 for testing callbacks (The Callback Server).

- Worker data server runs at http://localhost:8003/external-worker and therefore there is no need to mock this server nor it receives any interesting data.
- The DevRev Server runs at http://localhost:8003, so it must not be mocked.

- DevRev server runs at http://localhost:8003 and therefore there is no need to mock this nor it receives any interesting data.
- The Worker Data Server is part of The DevRev Server and is accessible at http://localhost:8003/external-worker, so it must not be mocked.


# The TypeScript Node.js application boilerplate
Expand Down
2 changes: 1 addition & 1 deletion run_devrev_snapin_conformance_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ if [ "${VERBOSE:-}" -eq 1 ] 2>/dev/null; then
fi

# Start the snap-in in the background and redirect output to a log file
npm run test:server > app.log 2>&1 &
npm run test:server -- local > app.log 2>&1 &

# Capture the process ID of the npm start command
SNAP_IN_PID=$!
Expand Down