Files
docx-js/ts/tests/localPackerTest.ts

19 lines
474 B
TypeScript
Raw Normal View History

2016-03-31 18:03:16 +01:00
/// <reference path="../typings/mocha/mocha.d.ts" />
/// <reference path="../typings/chai/chai.d.ts" />
import {LocalPacker} from "../export/packer/local";
import {assert} from "chai";
describe.only('Packer', () => {
var packer: LocalPacker;
beforeEach(() => {
packer = new LocalPacker("test.zip");
});
describe('#pack()', () => {
it("should create a standard docx file", () => {
packer.pack();
});
});
});