Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ospfranco committed Sep 8, 2024
1 parent c626285 commit 9a25409
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function App() {
return {results};
});

server.listen(3000);
server.listen(10424);

return () => {
server.stop();
Expand Down
2 changes: 1 addition & 1 deletion scripts/poll-in-app-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function pollInAppServer() {
while (Date.now() - startTime < maxDuration) {
try {
const response = await makeHttpRequest(
'http://localhost:3000/test_results'
'http://localhost:10424/test_results'
);
if (response !== null) {
let parsed_response = JSON.parse(response);
Expand Down

0 comments on commit 9a25409

Please sign in to comment.