@gameroom/kit
Version:
Node kit for the Gameroom API
35 lines (31 loc) • 865 B
JavaScript
const chai = require('chai')
const {
refs: { colors, default_ports, devices, google_product_categories }
} = require('../../')
const should = chai.should()
describe('refs', () => {
describe('colors', () => {
it('should export colors', () => {
should.exist(colors)
colors.should.be.a('object')
})
})
describe('default_ports', () => {
it('should export default_ports', () => {
should.exist(default_ports)
default_ports.should.be.a('object')
})
})
describe('devices', () => {
it('should export devices', () => {
should.exist(devices)
devices.should.be.a('object')
})
})
describe('google_product_categories', () => {
it('should export google_product_categories', () => {
should.exist(google_product_categories)
google_product_categories.should.be.a('object')
})
})
})