Skip to content

Commit

Permalink
fix: raise timeout in specs
Browse files Browse the repository at this point in the history
  • Loading branch information
pviti committed Nov 22, 2023
1 parent 53c06ab commit b9b9aff
Show file tree
Hide file tree
Showing 28 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion gen/templates/spec.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:##__ACTION_ID__##', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/approve.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:approve', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/approve_and_capture.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:approve_and_capture', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/archive.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:archive', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:authorization_amount_cents', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/authorize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:authorize', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/billing_address_clone_id.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:billing_address_clone_id', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:billing_address_same_as_shipping', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/cancel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:cancel', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/capture.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:capture', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/commit_invoice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:commit_invoice', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/create_subscriptions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:create_subscriptions', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/customer_payment_source_id.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:customer_payment_source_id', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/nullify_payment_source.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:nullify_payment_source', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/place.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:place', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/refresh.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:refresh', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/refund.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:refund', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/refund_invoice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:refund_invoice', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:save_billing_address_to_customer_address_book', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:save_payment_source_to_customer_wallet', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:save_shipping_address_to_customer_address_book', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/shipping_address_clone_id.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:shipping_address_clone_id', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:shipping_address_same_as_billing', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/start_editing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:start_editing', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/stop_editing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:stop_editing', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/unarchive.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:unarchive', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/update_taxes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:update_taxes', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/orders/validate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@oclif/test'

describe('orders:validate', () => {
test
.timeout(5000)
.timeout(10000)
.stdout()
.command(['orders:noc'])
.it('runs NoC', ctx => {
Expand Down

0 comments on commit b9b9aff

Please sign in to comment.