Skip to content

Commit

Permalink
run only the failing test
Browse files Browse the repository at this point in the history
Signed-off-by: ochikov <[email protected]>
  • Loading branch information
ochikov committed Sep 24, 2023
1 parent e429f13 commit 18db648
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/integration/ClientIntegrationTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,11 @@ describe("ClientIntegration", function () {
expect(error).to.be.an("Error");
});

it("can set network name on custom network", async function () {
it.only("can set network name on custom network", async function () {

Check warning on line 142 in test/integration/ClientIntegrationTest.js

View workflow job for this annotation

GitHub Actions / test-integration-node (14)

Unexpected exclusive mocha test

Check warning on line 142 in test/integration/ClientIntegrationTest.js

View workflow job for this annotation

GitHub Actions / test (16)

Unexpected exclusive mocha test

Check warning on line 142 in test/integration/ClientIntegrationTest.js

View workflow job for this annotation

GitHub Actions / build (14)

Unexpected exclusive mocha test

Check warning on line 142 in test/integration/ClientIntegrationTest.js

View workflow job for this annotation

GitHub Actions / test-integration-node (16)

Unexpected exclusive mocha test

Check warning on line 142 in test/integration/ClientIntegrationTest.js

View workflow job for this annotation

GitHub Actions / build (16)

Unexpected exclusive mocha test
this.timeout(120000);
console.log(clientTestnet);
console.log(clientTestnet.ledgerId);
console.log(LedgerId.TESTNET);
expect(clientTestnet.ledgerId).to.be.equal(LedgerId.TESTNET);
expect(clientPreviewNet.ledgerId).to.be.equal(LedgerId.PREVIEWNET);

Expand Down

0 comments on commit 18db648

Please sign in to comment.