Skip to content
Open
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: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,7 @@ fabric.properties
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# production
/build

### mise ###
mise.toml
.mise.local.toml
2 changes: 1 addition & 1 deletion src/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const wait = (duration) => {

const fetchTestData = async (testId, retryNum = 0) => {
const totalRetries = 180;
const delay = 3000;
const delay = 10000;
try {
let response = await fetch(TEST_RESULTS_END_POINT + '/' + testId);
let data = await response.json();
Expand Down