officegen-dbb
Version:
Modification of Ziv Barber's officegen, to provide a reasonable way to have line breaks in table cells.
22 lines (18 loc) • 567 B
JavaScript
// Assert tools needed:
var chai = require ( 'chai' );
var assert = chai.assert;
var expect = chai.expect;
// The package under test:
var officegen = require('../');
describe ( 'Officegen internals test suits', function () {
describe ( 'basicgen test suit', function () {
// Executed before each test:
beforeEach ( function ( done ) {
done ();
});
it ( 'plugins#getPrototypeByName ()', function ( done ) {
expect ( officegen.plugins.getPrototypeByName ( 'msoffice' ) ).to.be.an ( 'object' ).to.be.ok;
done ();
});
});
});