@dhyasama/totem-models 8.23.0 → 8.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/test/Deal.js +0 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "8.23.0",
3
+ "version": "8.23.1",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",
package/test/Deal.js CHANGED
@@ -237,21 +237,6 @@ describe('Deal', function() {
237
237
 
238
238
  });
239
239
 
240
- it('gets new deals for a customer', function(done) {
241
-
242
- Deal.getForCustomer(customer._id, { since: timestamps[0] }, function(err, result) {
243
-
244
- should.not.exist(err);
245
- should.exist(result);
246
-
247
- result.length.should.be.greaterThan(0);
248
-
249
- return done();
250
-
251
- });
252
-
253
- });
254
-
255
240
  it('deletes a deal', function(done) {
256
241
  Deal.delete(dealId, { CUSTOMER_ID: customer._id }, function(err, result) {
257
242
  should.not.exist(err);