trailpack-proxy-cart
Version:
eCommerce - Trailpack for Proxy Engine
23 lines (20 loc) • 462 B
JavaScript
const assert = require('assert')
describe('Trailpack', () => {
let pack
before(() => {
pack = global.app.packs['proxy-cart']
})
it('TODO should be loaded into the app.packs collection', () => {
assert(pack)
})
// describe('#validate', () => {
// it.skip('TODO test')
// })
// describe('#configure', () => {
// it.skip('TODO test')
// })
// describe('#initialize', () => {
// it.skip('TODO test')
// })
})