Skip to content

Commit c66e57d

Browse files
committed
chore: remove unused
1 parent 0605e8d commit c66e57d

File tree

5 files changed

+0
-83
lines changed

5 files changed

+0
-83
lines changed

test/fixtures/fulfillment-order/req/hold.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

test/fixtures/fulfillment-order/req/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ exports.cancel = require('./cancel');
44
exports.close = require('./close');
55
exports.move = require('./move');
66
exports.setFulfillmentOrdersDeadline = require('./set-fulfillment-orders-deadline');
7-
exports.hold = require('./hold');

test/fixtures/fulfillment-order/res/hold.json

Lines changed: 0 additions & 61 deletions
This file was deleted.

test/fixtures/fulfillment-order/res/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ exports.close = require('./close');
77
exports.list = require('./list');
88
exports.move = require('./move');
99
exports.get = require('./get');
10-
exports.hold = require('./hold');

test/fulfillment-order.test.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,4 @@ describe('Shopify#fulfillmentOrder', () => {
134134
.fulfillments(1046000823)
135135
.then((data) => expect(data).to.deep.equal(output.fulfillments));
136136
});
137-
138-
it('applies a fulfillment hold on an open fulfillment order', () => {
139-
const input = fixtures.req.hold;
140-
const output = fixtures.res.hold;
141-
142-
scope
143-
.post('/admin/fulfillment_orders/1046000789/hold.json', input)
144-
.reply(200, output);
145-
146-
return shopify.fulfillmentOrder.hold(1046000789).then((data) => {
147-
expect(data).to.deep.equal(output.fulfillment_order);
148-
});
149-
});
150137
});

0 commit comments

Comments
 (0)