const index = require('../index'),
expect = require('chai').expect
describe('Golang Build', () => {
it('should export a function', () => {
expect(index.build).to.be.a('function')
})
it('should export a promise', () => {
expect(index.build()).to.be.a('promise')
})
})