Skip to content

Commit

Permalink
Merge pull request #698 from demergent-labs/tecdsa-hanging
Browse files Browse the repository at this point in the history
add dummy test
  • Loading branch information
lastmjs authored Sep 26, 2022
2 parents 8d25bea + 65be505 commit 8ffcde4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion examples/motoko_examples/threshold_ecdsa/test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,18 @@ const tecdsa_canister = createActor('rrkah-fqaaa-aaaaa-aaaaq-cai', {
// TODO currently the replica take 5-10 minutes before it is ready to process
// any tecdsa requests, so we are skipping these tests until we can think of
// an elegant way to run these tests only after the replica is ready to process
// them
// them, when we are no longer skipping the tests we can remove the dummy test
const tests: Test[] = [
...deploy('azle'),
{
name: 'dummy test',
test: async () => {
await tecdsa_canister.public_key();
return {
ok: true
};
}
},
{
name: 'public key',
test: async () => {
Expand Down

0 comments on commit 8ffcde4

Please sign in to comment.