UNPKG

7digital-api

Version:
16 lines (11 loc) 383 B
var expect = require('chai').expect; var sevendigital = require("../index"); describe('Module entry point', function() { it('should be the built 7digital API wrapper', function() { expect(sevendigital.Artists).to.exist; expect(sevendigital.Artists).to.be.a('function'); }); it('should expose the schema', function() { expect(sevendigital.schema.host).to.exist; }); });