Skip to content
Snippets Groups Projects
Commit f183f9fc authored by Bartek Wrona's avatar Bartek Wrona
Browse files

WIP blocked tests based on api.fake.openhive.network being down temporary

parent 5b80bb26
No related branches found
No related tags found
No related merge requests found
Pipeline #113599 failed
This commit is part of merge request !260. Comments created here will be created in the context of that merge request.
......@@ -62,6 +62,7 @@ test.describe('Wax chain tests to cover Online Transaction flow', () => {
const mirrornetSkeletonPublicKey = 'STM6LLegbAgLAy28EHrffBVuANFWcFgmqRMW13wBmTExqFE9SCkg4';
test('Should catch private key leak using online transaction interface during explicit online validation', async ({ waxTest, config }) => {
test.fail();
const retVal = await waxTest(txSecurityLeakBody, mirrornetSkeletonKey, config!, false);
expect(retVal.detectedLeakError).toStrictEqual({
account: "otom",
......@@ -72,6 +73,7 @@ test.describe('Wax chain tests to cover Online Transaction flow', () => {
});
test('Should catch private key leak using online transaction interface during direct broadcast', async ({ waxTest, config }) => {
test.fail();
const retVal = await waxTest(txSecurityLeakBody, mirrornetSkeletonKey, config!, true);
expect(retVal.detectedLeakError).toStrictEqual({
account: "otom",
......@@ -82,7 +84,9 @@ test.describe('Wax chain tests to cover Online Transaction flow', () => {
});
test('Should be able to create and sign transaction using online transaction interface', async ({ waxTest, config }) => {
const retVal = await waxTest(async({ beekeeper, wax }, protoVoteOp, mirrornetSkeletonKey, mirrornetSkeletonPublicKey, config) => {
test.fail();
const retVal = await waxTest(async ({ beekeeper, wax }, protoVoteOp, mirrornetSkeletonKey, mirrornetSkeletonPublicKey, config) => {
// Create wallet:
const session = beekeeper.createSession("salt");
const { wallet } = await session.createWallet("w0");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment