kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
8 lines • 423 B
JavaScript
import { DeliveryClient } from '../../lib';
describe('Delivery Client initialization', function () {
it("initialization DeliveryClient without config should throw error", function () {
expect(function () { return new DeliveryClient(null); }).toThrowError();
expect(function () { return new DeliveryClient(undefined); }).toThrowError();
});
});
//# sourceMappingURL=delivery-client.spec.js.map