Skip to content

Commit

Permalink
test: improved failing-noop tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hui-an-yang committed Dec 17, 2024
1 parent 599ee03 commit ef7f0f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { OpKind, TezosToolkit } from "@taquito/taquito";
import { InMemorySigner } from "@taquito/signer";
import { verifySignature } from "@taquito/utils";

CONFIGS().forEach(({ setup, rpc }) => {
CONFIGS().forEach(({ lib, setup, rpc }) => {
let signerAlice = new InMemorySigner('edsk3QoqBuvdamxouPhin7swCvkQNgq4jP5KZPbwWNnwdZpSpJiEbq')

describe(`Test failing_noop through wallet api using: ${rpc}`, () => {
let Tezos: TezosToolkit;
let Tezos = lib;
beforeAll(async () => {
setup(true)
if (rpc.includes('paris')) {
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/__tests__/wallet/failing-noop.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { OpKind, TezosToolkit } from "@taquito/taquito";
import { InMemorySigner } from "@taquito/signer";
import { verifySignature } from "@taquito/utils";

CONFIGS().forEach(({ setup, rpc }) => {
CONFIGS().forEach(({ lib, setup, rpc }) => {
let signerAlice = new InMemorySigner('edsk3QoqBuvdamxouPhin7swCvkQNgq4jP5KZPbwWNnwdZpSpJiEbq')

describe(`Test failing_noop through wallet api using: ${rpc}`, () => {
let Tezos: TezosToolkit;
let Tezos = lib;
beforeAll(async () => {
setup(true)
if (rpc.includes('paris')) {
Expand Down

0 comments on commit ef7f0f6

Please sign in to comment.