Skip to content

Commit

Permalink
chore: rebase + minor fix in e2e_account_contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
LHerskind committed Sep 2, 2023
1 parent 0eebc23 commit f4e3715
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions yarn-project/end-to-end/src/e2e_account_contracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@ describe('e2e_account_contracts', () => {
itShouldBehaveLikeAnAccountContract((encryptionKey: PrivateKey) => new SingleKeyAccountContract(encryptionKey));
});

describe('eip single-key account', () => {
itShouldBehaveLikeAnAccountContract((encryptionKey: PrivateKey) => new Eip1271AccountContract(encryptionKey));
});

describe('schnorr multi-key account', () => {
itShouldBehaveLikeAnAccountContract(() => new SchnorrAccountContract(PrivateKey.random()));
});

describe('ecdsa stored-key account', () => {
itShouldBehaveLikeAnAccountContract(() => new EcdsaAccountContract(PrivateKey.random()));
});
describe('ecdsa stored-key account', () => {
itShouldBehaveLikeAnAccountContract(() => new Eip1271AccountContract(PrivateKey.random()));
});
});

0 comments on commit f4e3715

Please sign in to comment.