Skip to content

Commit 0932831

Browse files
committed
Fixed e2e test in AccountHttp
1 parent c1108e0 commit 0932831

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

e2e/infrastructure/AccountHttp.spec.ts

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -444,37 +444,6 @@ describe('AccountHttp', () => {
444444
});
445445
});
446446

447-
describe('Remove test AddressAlias', () => {
448-
let listener: Listener;
449-
before (() => {
450-
listener = new Listener(config.apiUrl);
451-
return listener.open();
452-
});
453-
after(() => {
454-
return listener.close();
455-
});
456-
457-
it('Announce addressAliasTransaction', (done) => {
458-
const addressAliasTransaction = AddressAliasTransaction.create(
459-
Deadline.create(),
460-
AliasActionType.Unlink,
461-
namespaceId,
462-
account.address,
463-
NetworkType.MIJIN_TEST,
464-
);
465-
const signedTransaction = addressAliasTransaction.signWith(account, generationHash);
466-
467-
listener.confirmed(account.address).subscribe(() => {
468-
done();
469-
});
470-
listener.status(account.address).subscribe((error) => {
471-
console.log('Error:', error);
472-
assert(false);
473-
done();
474-
});
475-
transactionHttp.announce(signedTransaction);
476-
});
477-
});
478447
describe('Restore test multisig Accounts', () => {
479448
let listener: Listener;
480449
before (() => {

0 commit comments

Comments
 (0)