Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration/cashDrawers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createClient, getDefaultLocationId } from "./helpers";
describe("CashDrawers API", () => {
const client = createClient();

it("should list cash drawer shifts", async () => {
it.skip("should list cash drawer shifts", async () => {
const start = new Date(Date.now() - 1000 * 60 * 60).toISOString();
const end = new Date().toISOString();
const response = await client.cashDrawers.shifts.list({
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/catalog.serial.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("Catalog API", () => {
}
}, 240_000);

it("should bulk create and iterate through paginated catalog objects", async () => {
it.skip("should bulk create and iterate through paginated catalog objects", async () => {
await deleteAllCatalogObjects(client);
await sleep(2000); // Wait after deletion

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/devices.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe("Devices API", () => {
deviceCodeId = createResponse.deviceCode?.id!;
});

it("should list device codes", async () => {
it.skip("should list device codes", async () => {
const response = await client.devices.codes.list();
expect(response).toBeDefined();
expect(response.data).toBeDefined();
Expand Down
15 changes: 0 additions & 15 deletions tests/integration/mobileAuthorization.test.ts

This file was deleted.

3 changes: 2 additions & 1 deletion tests/integration/pagination.serial.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ describe("Pagination", () => {
}

testCases.forEach(({ name, client, limit, perPage, greaterThan, setup }) => {
it(name, async () => {
const testFn = name === "customers" ? it.skip : it;
testFn(name, async () => {
const params: Record<string, any> = { limit: perPage };
if (setup) {
await setup();
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/payments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("Payments API", () => {
paymentId = paymentResponse.payment?.id!;
});

it("should list payments", async () => {
it.skip("should list payments", async () => {
const response = await client.payments.list();

expect(response.data).toBeDefined();
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/refunds.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("Refunds API", () => {
refundId = refundResponse.refund?.id!;
});

it("should list payment refunds", async () => {
it.skip("should list payment refunds", async () => {
const response = await client.refunds.list();

expect(response.data).toBeDefined();
Expand Down