whmcs
Version:
WHMCS API client.
17 lines (11 loc) • 329 B
JavaScript
var assert = require('assert'),
expect = require('chai').expect,
client = require('./spec_helper').client;
describe('authok', function() {
it('should get a product without error', function(done) {
client.products.getProduct(1, function(err, product) {
expect(err).to.be.null;
done();
});
});
});