Skip to content

Commit

Permalink
chore: remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
aldochaconc committed Aug 14, 2024
1 parent 0605e8d commit c66e57d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 83 deletions.
7 changes: 0 additions & 7 deletions test/fixtures/fulfillment-order/req/hold.json

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/fulfillment-order/req/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ exports.cancel = require('./cancel');
exports.close = require('./close');
exports.move = require('./move');
exports.setFulfillmentOrdersDeadline = require('./set-fulfillment-orders-deadline');
exports.hold = require('./hold');
61 changes: 0 additions & 61 deletions test/fixtures/fulfillment-order/res/hold.json

This file was deleted.

1 change: 0 additions & 1 deletion test/fixtures/fulfillment-order/res/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ exports.close = require('./close');
exports.list = require('./list');
exports.move = require('./move');
exports.get = require('./get');
exports.hold = require('./hold');
13 changes: 0 additions & 13 deletions test/fulfillment-order.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,17 +134,4 @@ describe('Shopify#fulfillmentOrder', () => {
.fulfillments(1046000823)
.then((data) => expect(data).to.deep.equal(output.fulfillments));
});

it('applies a fulfillment hold on an open fulfillment order', () => {
const input = fixtures.req.hold;
const output = fixtures.res.hold;

scope
.post('/admin/fulfillment_orders/1046000789/hold.json', input)
.reply(200, output);

return shopify.fulfillmentOrder.hold(1046000789).then((data) => {
expect(data).to.deep.equal(output.fulfillment_order);
});
});
});

0 comments on commit c66e57d

Please sign in to comment.