Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gyuguen committed Mar 17, 2024
1 parent 0c70f36 commit e0bdaba
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"scripts": {
"proto-gen": "./protocgen.sh",
"build": "tsc",
"test": "jest",
"test": "jest --runInBand",
"lint": "eslint src --ext .ts",
"prettify": "prettier --write ."
},
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/group-signing-panacea-client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { v4 as uuidv4 } from "uuid";
import { TextEncoder } from "util";
import { Secp256k1HdWallet } from "@cosmjs/amino";
import assert from "assert";
import { panacead } from "./utils/test-utils";
import { panacead } from "../utils/test-utils";
import {
panaceaWalletOpts,
SigningPanaceaClient,
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/panacea-client.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PanaceaClient } from "../client/panacea-client";
import { panacead } from "./utils/test-utils";
import { panacead } from "../utils/test-utils";
import { DirectSecp256k1HdWallet } from "@cosmjs/proto-signing";
import { panaceaWalletOpts } from "../client/signing-panacea-client";

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/secp256k1.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import { TextEncoder } from "util";
import * as jose from "jose";
import { Secp256k1 } from "../crypto";
import { panacead } from "./utils/test-utils";
import { panacead } from "../utils/test-utils";

describe("Secp256k1", () => {
it("parseMnemonicToPrivateKey", async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/signing-panacea-client.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DirectSecp256k1HdWallet } from "@cosmjs/proto-signing";
import { panacead } from "./utils/test-utils";
import { panacead } from "../utils/test-utils";
import {
panaceaWalletOpts,
SigningPanaceaClient,
Expand Down
File renamed without changes.

0 comments on commit e0bdaba

Please sign in to comment.