Skip to content
Snippets Groups Projects

Typescript & toolset version update

Merged Bartek Wrona requested to merge bw_toolset_upgrade into develop
1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -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");
Loading