Skip to content

Commit

Permalink
Remove subscriptions.del test (#1869)
Browse files Browse the repository at this point in the history
Remove subscriptions del test
  • Loading branch information
anniel-stripe authored Aug 7, 2023
1 parent 2f644e5 commit 08eeb1b
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions test/resources/Subscriptions.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,6 @@ describe('subscriptions Resource', () => {
});
});

describe('del', () => {
it('Sends the correct request', () => {
stripe.subscriptions.del('test_sub');
expect(stripe.LAST_REQUEST).to.deep.equal({
method: 'DELETE',
url: '/v1/subscriptions/test_sub',
headers: {},
data: {},
settings: {},
});
});
});

describe('update', () => {
it('Sends the correct request', () => {
stripe.subscriptions.update('test_sub', {
Expand Down

0 comments on commit 08eeb1b

Please sign in to comment.