Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
f7e5c664
Commit
f7e5c664
authored
May 05, 2022
by
Nicolas "Norswap" Laurent
Committed by
norswap
May 10, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extend timeouts to accomodate my slow-ass setup
parent
8e5d6bce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
challenge_test.js
test/challenge_test.js
+1
-1
mips_test_execwtrie.js
test/mips_test_execwtrie.js
+2
-2
No files found.
test/challenge_test.js
View file @
f7e5c664
...
...
@@ -48,5 +48,5 @@ describe("Challenge contract", function () {
// the real issue here is from step 0->1 when we write the input hash
// TODO: prove the challenger wrong?
}).
timeout
(
120
000
)
}).
timeout
(
200
_
000
)
})
test/mips_test_execwtrie.js
View file @
f7e5c664
...
...
@@ -33,7 +33,7 @@ describe("MIPS contract", function () {
}
console
.
log
(
i
,
root
)
}
});
})
.
timeout
(
40
_000
)
;
it
(
"
oracle should work
"
,
async
function
()
{
let
root
=
await
addPreimages
(
mm
,
trieOracle
)
...
...
@@ -58,6 +58,6 @@ describe("MIPS contract", function () {
}
expect
(
out1
).
to
.
equal
(
1
)
expect
(
out2
).
to
.
equal
(
1
)
}).
timeout
(
120
000
);
}).
timeout
(
200
_
000
);
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment