Skip to content

Commit

Permalink
test: test failed api tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Aug 23, 2024
1 parent 40da208 commit 85745e1
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/app-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ jobs:
fail-fast: false
matrix:
tags: [
"@artifactsSet1",
"@artifactsSet2",
"@artifactsSet3",
"@artifactsSet4",
"@redirectionSet1",
"@redirectionSet2",
"@redirectionSet3",
"@copying",
"@search",
"@testnetSmokeSuite"
# "@artifactsSet1",
# "@artifactsSet2",
# "@artifactsSet3",
# "@artifactsSet4",
# "@redirectionSet1",
# "@redirectionSet2",
# "@redirectionSet3",
"@copying"
# "@search",
# "@testnetSmokeSuite"
]

name: '${{ matrix.tags }}'
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/integration-tests-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
matrix:
node-version: ['lts/*'] # 18.17.1 or lts/*
test-pattern:
- stub.test.ts
- accounts.test.ts
- addresses.test.ts
- batches.test.ts
- blocks.test.ts
- contracts.test.ts
- logs.test.ts
- stats.test.ts
- tokens.test.ts
# - stub.test.ts
# - accounts.test.ts
# - addresses.test.ts
# - batches.test.ts
# - blocks.test.ts
# - contracts.test.ts
# - logs.test.ts
# - stats.test.ts
# - tokens.test.ts
- transactions.test.ts
name: 'API test set: ${{ matrix.test-pattern}} / Node: ${{ matrix.node-version}}'
steps:
Expand Down
8 changes: 4 additions & 4 deletions packages/integration-tests/tests/api/transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ describe("Transactions", () => {
});
});

describe("/transactions/{transactionHash}", () => {
xdescribe("/transactions/{transactionHash}", () => {
beforeAll(async () => {
const customToken = await helper.getStringFromFile(bufferFile + Buffer.L2deposited);
await playbook.transferFailedState(customToken);
Expand Down Expand Up @@ -1030,7 +1030,7 @@ describe("Transactions", () => {
});
});

describe("/transactions/${txHash}/logs", () => {
xdescribe("/transactions/${txHash}/logs", () => {
//@id1507
it("Verify the transaction via /transactions/{transactionHash}/logs", async () => {
await helper.retryTestAction(async () => {
Expand Down Expand Up @@ -1082,7 +1082,7 @@ describe("Transactions", () => {
});
});

describe("/transactions", () => {
xdescribe("/transactions", () => {
//@id1506
it("Verify the transaction via /transactions", async () => {
await helper.retryTestAction(async () => {
Expand Down Expand Up @@ -1146,7 +1146,7 @@ describe("Transactions", () => {
});
});

describe("/api?module=transaction", () => {
xdescribe("/api?module=transaction", () => {
//@id1697
it("Verify /api?module=transaction&action=getstatus response", async () => {
await helper.retryTestAction(async () => {
Expand Down

0 comments on commit 85745e1

Please sign in to comment.