UNPKG

golang

Version:
12 lines (10 loc) 288 B
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') }) })