Skip to content

Commit

Permalink
chore: refactored test suite names
Browse files Browse the repository at this point in the history
  • Loading branch information
abilevych committed Jan 17, 2024
1 parent 32cacb5 commit 0b5c7d5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/batches.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { environment } from "../../src/config";
import { localConfig } from "../../src/config";
import { Helper } from "../../src/helper";

describe("/batches", () => {
describe("Batches", () => {
jest.setTimeout(localConfig.standardTimeout);

const helper = new Helper();
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/blocks.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { localConfig } from "../../src/config";
import { Helper } from "../../src/helper";

describe("/blocks", () => {
describe("Blocks", () => {
jest.setTimeout(localConfig.standardTimeout);

const helper = new Helper();
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/contracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Buffer, Wallets } from "../../src/entities";
import { Helper } from "../../src/helper";
import { Playbook } from "../../src/playbook/playbook";

describe("Contracts API", () => {
describe("Contracts", () => {
jest.setTimeout(localConfig.standardTimeout);

const helper = new Helper();
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/logs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Buffer } from "../../src/entities";
import { Helper } from "../../src/helper";
import { Playbook } from "../../src/playbook/playbook";

xdescribe("Logs API", () => {
xdescribe("Logs", () => {
jest.setTimeout(localConfig.standardTimeout); //works unstable without timeout

const helper = new Helper();
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/stats.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { localConfig } from "../../src/config";
import { Helper } from "../../src/helper";

describe("/stats", () => {
describe("Stats", () => {
jest.setTimeout(localConfig.standardTimeout); //works unstable without timeout

const helper = new Helper();
Expand Down

0 comments on commit 0b5c7d5

Please sign in to comment.