Skip to content

Commit d5cb300

Browse files
committed
fix: try done() on snap-account-sig e2e
1 parent 71e2d12 commit d5cb300

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/e2e/accounts/snap-account-signatures.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('Snap Account Signatures', function (this: Suite) {
2121
// generate title of the test from flowType
2222
const title = `can sign with ${flowType} flow`;
2323

24-
it(title, async () => {
24+
it(title, async (done) => {
2525
await withFixtures(
2626
accountSnapFixtures(title),
2727
async ({ driver }: { driver: Driver }) => {
@@ -48,6 +48,8 @@ describe('Snap Account Signatures', function (this: Suite) {
4848
for (const locatorID of locatorIDs) {
4949
await signData(driver, locatorID, newPublicKey, flowType);
5050
}
51+
52+
done();
5153
},
5254
);
5355
});

0 commit comments

Comments
 (0)