Skip to content

Commit

Permalink
fix(order): fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermorrisford committed Feb 12, 2024
1 parent 96fb3c3 commit 0ae3171
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions models/order/src/order-from-quote-draft/builder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('builder', () => {
quote: expect.objectContaining({
typeId: 'quote',
}),
quoteStateToAccepted: false,
quoteStateToAccepted: expect.any(Boolean),
orderNumber: expect.any(String),
paymentState: expect.any(String),
shipmentState: expect.any(String),
Expand All @@ -38,7 +38,7 @@ describe('builder', () => {
quote: expect.objectContaining({
typeId: 'quote',
}),
quoteStateToAccepted: false,
quoteStateToAccepted: expect.any(Boolean),
orderNumber: expect.any(String),
paymentState: expect.any(String),
shipmentState: expect.any(String),
Expand All @@ -60,7 +60,7 @@ describe('builder', () => {
typeId: 'quote',
__typename: 'Reference',
}),
quoteStateToAccepted: false,
quoteStateToAccepted: expect.any(Boolean),
orderNumber: expect.any(String),
paymentState: expect.any(String),
shipmentState: expect.any(String),
Expand Down

0 comments on commit 0ae3171

Please sign in to comment.