bestbuy
Version:
High level node.js client for the Best Buy API.
29 lines (25 loc) • 683 B
JavaScript
var test = require('./lib/tape-nock-setup');
var BBY = require('../');
var bby = BBY({
key: process.env.BBY_API_KEY || 'XXX',
debug: false,
headers: {
'User-Agent': 'Warranties tests'
}
});
test('Get a warranty for a product', test.opts, function (t) {
// Do a query for stores
bby.warranties(6354884)
.then(function (data) {
t.ok(data.length > 0, 'warranties returned');
t.end();
});
});
test('Get a warranty for a product via callback', test.opts, function (t) {
// Do a query for stores
bby.warranties(6354884, function (err, data) {
t.error(err, 'no error');
t.ok(data.length > 0, 'warranties returned');
t.end();
});
});