Skip to content

Commit

Permalink
Merge branch 'main' into add-jwk-check
Browse files Browse the repository at this point in the history
  • Loading branch information
heliuchuan authored Nov 1, 2024
2 parents 76e6e19 + 083b516 commit a7cfb5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/api/event.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { FUND_AMOUNT, longTestTimeout } from "../../unit/helper";
import { getAptosClient } from "../helper";

describe("Event", () => {
test("it should get transaction fee statement module event by event type", async () => {
test.skip("it should get transaction fee statement module event by event type", async () => {
const { aptos } = getAptosClient();

const events = await aptos.getModuleEventsByEventType({
Expand All @@ -25,7 +25,7 @@ describe("Event", () => {
expect(onlyTwoEvents[0].type).toEqual("0x1::block::NewBlock");
});

test("it should get fund event by creation number and address", async () => {
test.skip("it should get fund event by creation number and address", async () => {
const { aptos } = getAptosClient();

const testAccount = Account.generate();
Expand All @@ -39,7 +39,7 @@ describe("Event", () => {
expect(events[0].type).toEqual("0x1::account::CoinRegisterEvent");
});

test("it should get fund event by event type and address", async () => {
test.skip("it should get fund event by event type and address", async () => {
const { aptos } = getAptosClient();

const testAccount = Account.generate();
Expand Down Expand Up @@ -70,7 +70,7 @@ describe("Event", () => {
expect(events.length).toBeGreaterThan(0);
});

test(
test.skip(
"it should filter events",
async () => {
const { aptos } = getAptosClient();
Expand Down

0 comments on commit a7cfb5e

Please sign in to comment.